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."입니다.

확장 프로그램 스크린샷

screenshot

MTG Display Color Names 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}