MTG Display Color Names

Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.

什麼是MTG Display Color Names?

MTG Display Color Names是由kevin.yuliawan開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.”。

擴展截圖

screenshot

下載MTG Display Color Names擴展crx文件

下載MTG Display Color Names擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Useful for both new players learning the color names, and old players for reminders!

Turn it on/off by clicking on the extension icon, then clicking on the power button. This requires a refresh of the current page you're on.

Note: Currently disabled on Twitter due to page loading issues. This will be targeted for a fix in later releases.                    

擴展基本資訊

名稱 MTG Display Color Names MTG Display Color Names
ID nngpmgkjlppmoadcjbabccppcbdeeobf
官方網址 https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf
簡介 Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
檔案大小 51.64 KB
安裝次數 131
目前版本 1.0.2
更新時間 2019-04-23
上架時間 2019-04-17
評分 4.40/5 共 10 次評分
開發者 kevin.yuliawan
付費類型 free
擴展官網 https://github.com/kevinyuliawan/mtg-display-color-names/
說明頁面URL https://github.com/kevinyuliawan/mtg-display-color-names/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MTG Display Color Names",
    "version": "1.0.2",
    "description": "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds\/shards\/wedges.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "images\/*.svg"
    ]
}