MTG Display Color Names
Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
Cos'è MTG Display Color Names?
MTG Display Color Names è un'estensione di Chrome sviluppata da kevin.yuliawan, e la sua funzione principale è "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MTG Display Color Names
Scarica i file di estensione MTG Display Color Names in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | MTG Display Color Names |
ID | nngpmgkjlppmoadcjbabccppcbdeeobf |
URL Ufficiale | https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf |
Descrizione | Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges. |
Dimensione del File | 51.64 KB |
Conteggio Installazioni | 131 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2019-04-23 |
Data di Pubblicazione | 2019-04-17 |
Valutazione | 4.40/5 Totale 10 Valutazioni |
Sviluppatore | kevin.yuliawan |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kevinyuliawan/mtg-display-color-names/ |
URL della Pagina di Aiuto | https://github.com/kevinyuliawan/mtg-display-color-names/issues |
Lingue Supportate | 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" ] } |