MTG Display Color Names
Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
Co je MTG Display Color Names?
MTG Display Color Names je rozšíření Chrome vyvinuté kevin.yuliawan, a jeho hlavní funkcí je „Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření MTG Display Color Names
Stáhněte si soubory rozšíření MTG Display Color Names ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | MTG Display Color Names |
ID | nngpmgkjlppmoadcjbabccppcbdeeobf |
Oficiální URL | https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf |
Popis | Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges. |
Velikost souboru | 51.64 KB |
Počet instalací | 131 |
Aktuální Verze | 1.0.2 |
Poslední Aktualizace | 2019-04-23 |
Datum Vydání | 2019-04-17 |
Hodnocení | 4.40/5 Celkem 10 Hodnocení |
Vývojář | kevin.yuliawan |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/kevinyuliawan/mtg-display-color-names/ |
URL Stránky Nápovědy | https://github.com/kevinyuliawan/mtg-display-color-names/issues |
Podporované Jazyky | 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" ] } |