CoinMarketCap Enhanced
Adds some enhancements to the cryptocurrency site CoinMarketCap.com
Τι είναι το CoinMarketCap Enhanced;
Το CoinMarketCap Enhanced είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον NathanAB, και η κύρια λειτουργία του είναι "Adds some enhancements to the cryptocurrency site CoinMarketCap.com".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης CoinMarketCap Enhanced
Λήψη αρχείων επέκτασης CoinMarketCap Enhanced σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
**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
Βασικές Πληροφορίες Επέκτασης
Όνομα | CoinMarketCap Enhanced |
ID | cjdbebokopcgdhcefeijjdgfampgeejg |
Επίσημο URL | https://chromewebstore.google.com/detail/coinmarketcap-enhanced/cjdbebokopcgdhcefeijjdgfampgeejg |
Περιγραφή | Adds some enhancements to the cryptocurrency site CoinMarketCap.com |
Μέγεθος Αρχείου | 93.34 KB |
Αριθμός Εγκαταστάσεων | 2,346 |
Τρέχουσα Έκδοση | 1.8.2 |
Τελευταία Ενημέρωση | 2018-06-28 |
Ημερομηνία Δημοσίευσης | 2018-06-28 |
Αξιολόγηση | 4.67/5 Συνολικά 27 Αξιολογήσεις |
Προγραμματιστής | NathanAB |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://twitter.com/nathanab_ |
Υποστηριζόμενες Γλώσσες | 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" } ] } |