MTG Display Color Names

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

What is MTG Display Color Names?

MTG Display Color Names is a Chrome extension developed by kevin.yuliawan, and its main feature is "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".

Extension Screenshots

screenshot

Download MTG Display Color Names Extension CRX File

Download MTG Display Color Names extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name MTG Display Color Names MTG Display Color Names
ID nngpmgkjlppmoadcjbabccppcbdeeobf
Official URL https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf
Description Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
File Size 51.64 KB
Installation Count 131
Current Version 1.0.2
Last Updated 2019-04-23
Publish Date 2019-04-17
Rating 4.40/5 Total 10 Ratings
Developer kevin.yuliawan
Payment Type free
Extension Website https://github.com/kevinyuliawan/mtg-display-color-names/
Help Page URL https://github.com/kevinyuliawan/mtg-display-color-names/issues
Supported Languages 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"
    ]
}