CoinMarketCap Enhanced
Adds some enhancements to the cryptocurrency site CoinMarketCap.com
Was ist CoinMarketCap Enhanced?
CoinMarketCap Enhanced ist eine Chrome-Erweiterung, die von NathanAB entwickelt wurde, und ihr Hauptmerkmal ist "Adds some enhancements to the cryptocurrency site CoinMarketCap.com".
Erweiterungsscreenshots
CoinMarketCap Enhanced-Erweiterungs-CRX-Datei herunterladen
Laden Sie CoinMarketCap Enhanced-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
**PLEASE NOTE**: Now that CMC has stepped up their game and added most of the important features I originally wanted by making this extension, it has essentially completed its purpose and will no longer be maintained. Thanks everyone :)
An extension with a few small enhancements to CoinMarketCap.com which add a night theme, inline charts, volume-to-marketcap ratio column, auto-refresh timer, TradingView link, removes ads, and expands the main table to fill the entire window.
Github: https://github.com/NathanAB/cmc-enhanced Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cjdbebokopcgdhcefeijjdgfampgeejg |
| Offizielle URL | https://chromewebstore.google.com/detail/coinmarketcap-enhanced/cjdbebokopcgdhcefeijjdgfampgeejg |
| Beschreibung | Adds some enhancements to the cryptocurrency site CoinMarketCap.com |
| Dateigröße | 93.34 KB |
| Installationsanzahl | 2,346 |
| Aktuelle Version | 1.8.2 |
| Letztes Update | 2018-06-28 |
| Veröffentlichungsdatum | 2018-06-28 |
| Bewertung | 4.67/5 Insgesamt 27 Bewertungen |
| Entwickler | NathanAB |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://twitter.com/nathanab_ |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "CoinMarketCap Enhanced",
"version": "1.8.2",
"manifest_version": 2,
"description": "Adds some enhancements to the cryptocurrency site CoinMarketCap.com",
"homepage_url": "https:\/\/twitter.com\/nathanab_",
"icons": {
"128": "icons\/icon128.png"
},
"permissions": [
"https:\/\/coinmarketcap.com\/*",
"storage"
],
"options_ui": {
"page": "options\/index.html",
"chrome_style": true
},
"web_accessible_resources": [
"options\/index.html"
],
"content_scripts": [
{
"matches": [
"https:\/\/coinmarketcap.com\/*"
],
"all_frames": true,
"js": [
"js\/bundle.js"
],
"css": [
"css\/style.css"
]
},
{
"matches": [
"https:\/\/coinmarketcap.com\/*"
],
"all_frames": true,
"js": [
"js\/start.js"
],
"run_at": "document_start"
}
]
} | |