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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
    ]
}