MTG Display Color Names
Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.
Что такое MTG Display Color Names?
MTG Display Color Names - это расширение Chrome, разработанное kevin.yuliawan, и его основная функция - "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".
Снимки экрана расширения
Скачать файл CRX расширения MTG Display Color Names
Скачайте файлы расширений MTG Display Color Names в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | MTG Display Color Names |
ID | nngpmgkjlppmoadcjbabccppcbdeeobf |
Официальный URL | https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf |
Описание | Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges. |
Размер файла | 51.64 KB |
Количество установок | 131 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2019-04-23 |
Дата публикации | 2019-04-17 |
Рейтинг | 4.40/5 Всего 10 оценок |
Разработчик | kevin.yuliawan |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/kevinyuliawan/mtg-display-color-names/ |
URL страницы помощи | https://github.com/kevinyuliawan/mtg-display-color-names/issues |
Поддерживаемые языки | 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" ] } |