MTG Display Color Names

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

Wat is MTG Display Color Names?

MTG Display Color Names is een Chrome-extensie ontwikkeld door kevin.yuliawan, en de belangrijkste functie is "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie MTG Display Color Names

Download MTG Display Color Names-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam MTG Display Color Names MTG Display Color Names
ID nngpmgkjlppmoadcjbabccppcbdeeobf
Officiële URL https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf
Beschrijving Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
Bestandsgrootte 51.64 KB
Aantal Installaties 131
Huidige Versie 1.0.2
Laatst Bijgewerkt 2019-04-23
Publicatiedatum 2019-04-17
Beoordeling 4.40/5 Totaal 10 Beoordelingen
Ontwikkelaar kevin.yuliawan
Betalingswijze free
Extensiewebsite https://github.com/kevinyuliawan/mtg-display-color-names/
Help Pagina-URL https://github.com/kevinyuliawan/mtg-display-color-names/issues
Ondersteunde Talen 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"
    ]
}