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是由kevin.yuliawan开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.”。
扩展截图
下载MTG Display Color Names扩展crx文件
下载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" ] } |