MTG Display Color Names
Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
Was ist MTG Display Color Names?
MTG Display Color Names ist eine Chrome-Erweiterung, die von kevin.yuliawan entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".
Erweiterungsscreenshots
MTG Display Color Names-Erweiterungs-CRX-Datei herunterladen
Laden Sie MTG Display Color Names-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nngpmgkjlppmoadcjbabccppcbdeeobf |
| Offizielle URL | https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf |
| Beschreibung | Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges. |
| Dateigröße | 51.64 KB |
| Installationsanzahl | 131 |
| Aktuelle Version | 1.0.2 |
| Letztes Update | 2019-04-23 |
| Veröffentlichungsdatum | 2019-04-17 |
| Bewertung | 4.40/5 Insgesamt 10 Bewertungen |
| Entwickler | kevin.yuliawan |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/kevinyuliawan/mtg-display-color-names/ |
| Hilfeseite URL | https://github.com/kevinyuliawan/mtg-display-color-names/issues |
| Unterstützte Sprachen | 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"
]
} | |