Scry

Rollover popups for Magic: the Gathering sites

Scry란 무엇입니까?

Scry은(는) David Morgan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rollover popups for Magic: the Gathering sites"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Scry 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        # Scry Rollover Popups

Scry is a Google Chrome extension that adds rollover popups to many popular Magic: the Gathering sites:
* dailymtg.com
* mtgsalvation.com
* starcitygames.com
* gatheringmagic.com
* channelfireball.com

Scry popups contain lots of useful info such as Oracle text, official rulings, and TCGPlayer.com prices.

Oracle text is courtesy of the MTG JSON project (http://mtgjson.com). Images are pulled on demand from MagicCards.info.

Please report issues at https://github.com/Spitemare/scry/issues                    

확장 프로그램 기본 정보

이름 Scry Scry
ID pjpijgddpoilfmepmdaanimejonkhioc
공식 URL https://chromewebstore.google.com/detail/scry/pjpijgddpoilfmepmdaanimejonkhioc
설명 Rollover popups for Magic: the Gathering sites
파일 크기 3.88 MB
설치 횟수 268
현재 버전 3.9.4
최근 업데이트 2015-09-10
출시 날짜 2015-09-10
평점 4.10/5 총 21 개의 평점
개발자 David Morgan
결제 유형 free
확장 프로그램 웹 사이트 http://goo.gl/7af89M
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scry",
    "description": "Rollover popups for Magic: the Gathering sites",
    "homepage_url": "http:\/\/spitemare.github.io\/scry\/",
    "version": "3.9.4",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "notifications",
        "unlimitedStorage",
        "http:\/\/partner.tcgplayer.com\/*",
        "http:\/\/magiccards.info\/scans\/en\/*"
    ],
    "background": {
        "scripts": [
            "lib\/jquery-2.0.3.min.js",
            "lib\/jquery.indexeddb-1.0.0.min.js",
            "js\/init.js",
            "js\/menu.js",
            "js\/oracle.js",
            "js\/prices.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Scry"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/spitemare.github.io\/scry\/"
            ],
            "css": [
                "css\/scry.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/scry.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/www.mtgsalvation.com\/articles\/*",
                "*:\/\/*.mtgsalvation.com\/forums\/*"
            ],
            "css": [
                "css\/scry.css",
                "css\/mtgsalvationforum.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/mtgsalvationforum.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/mtgsalvation.gamepedia.com\/*"
            ],
            "css": [
                "css\/scry.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/mtgsalvationwiki.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/magic.wizards.com\/en\/articles\/*"
            ],
            "css": [
                "css\/scry.css",
                "css\/dailymtg.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/dailymtg.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*.starcitygames.com\/article\/*"
            ],
            "css": [
                "css\/scry.css",
                "css\/starcitygames.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/starcitygames.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*.gatheringmagic.com\/*"
            ],
            "css": [
                "css\/scry.css",
                "css\/gatheringmagic.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/gatheringmagic.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*.channelfireball.com\/articles\/*"
            ],
            "css": [
                "css\/scry.css",
                "css\/channelfireball.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/channelfireball.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.reddit.com\/r\/magicTCG\/*"
            ],
            "css": [
                "css\/scry.css"
            ],
            "js": [
                "lib\/jquery-2.0.3.min.js",
                "js\/scry.js",
                "js\/site\/reddit.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "img\/*.png",
        "template.html"
    ]
}