MTG Display Color Names

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

Qu'est-ce que MTG Display Color Names ?

MTG Display Color Names est une extension Chrome développée par kevin.yuliawan, et sa fonction principale est "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension MTG Display Color Names

Téléchargez les fichiers d'extension MTG Display Color Names au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom MTG Display Color Names MTG Display Color Names
ID nngpmgkjlppmoadcjbabccppcbdeeobf
URL Officiel 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.
Taille du Fichier 51.64 KB
Nombre d'Installations 131
Version Actuelle 1.0.2
Dernière Mise à Jour 2019-04-23
Date de Publication 2019-04-17
Évaluation 4.40/5 Total 10 Évaluations
Développeur kevin.yuliawan
Type de Paiement free
Site Web de l'Extension https://github.com/kevinyuliawan/mtg-display-color-names/
URL de la Page d'Aide https://github.com/kevinyuliawan/mtg-display-color-names/issues
Langues Prises en Charge 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"
    ]
}