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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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" ] } |