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”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载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 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
电子邮箱 nathanb92@gmail.com
付费类型 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"
        }
    ]
}