CoinMarketCap Enhanced
Adds some enhancements to the cryptocurrency site CoinMarketCap.com
什麼是CoinMarketCap Enhanced?
CoinMarketCap Enhanced是由NathanAB開發的Chrome擴展程式,該擴展的主要功能是“Adds some enhancements to the cryptocurrency site CoinMarketCap.com”。
擴展截圖
下載CoinMarketCap Enhanced擴展crx文件
下載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 |
官方網址 | 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" } ] } |