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 là gì?
MTG Display Color Names là một tiện ích mở rộng Chrome được phát triển bởi kevin.yuliawan, và tính năng chính của nó là "Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng MTG Display Color Names
Tải xuống các tệp mở rộng MTG Display Color Names dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | MTG Display Color Names |
ID | nngpmgkjlppmoadcjbabccppcbdeeobf |
URL Chính Thức | https://chromewebstore.google.com/detail/mtg-display-color-names/nngpmgkjlppmoadcjbabccppcbdeeobf |
Mô tả | Chrome extension that appends the display of colors to color names for associated Magic: The Gathering guilds/shards/wedges. |
Kích Thước Tệp | 51.64 KB |
Số Lần Cài Đặt | 131 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2019-04-23 |
Ngày Phát Hành | 2019-04-17 |
Đánh Giá | 4.40/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | kevin.yuliawan |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/kevinyuliawan/mtg-display-color-names/ |
URL Trang Trợ Giúp | https://github.com/kevinyuliawan/mtg-display-color-names/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |