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. 拡張機能の基本情報
| 名前 | |
| 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"
]
} | |