Hearthstone Deck Highlighter

A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection

Hearthstone Deck Highlighterとは何ですか?

Hearthstone Deck Highlighterはroberthartjrによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection」です。

拡張機能のスクリーンショット

screenshot
screenshot

Hearthstone Deck Highlighter拡張機能のCRXファイルをダウンロード

Hearthstone Deck Highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Name has been changed to "Hearthstone Deck Highlighter".

Added the ability to automatically update your collection from the hearthpwn.com site using innkeeper. 

Steps
---------
Add your collection to the Hearthpwn.com site using Innkeeper.
http://www.innkeeper.com/

Go to your collection page and click on the update collection button in red. It will automatically update it.                    

拡張機能の基本情報

名前 Hearthstone Deck Highlighter Hearthstone Deck Highlighter
ID jepahkmnkblfichnniogaiodomcojjkc
公式URL https://chromewebstore.google.com/detail/hearthstone-deck-highligh/jepahkmnkblfichnniogaiodomcojjkc
説明 A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection
ファイルサイズ 87.09 KB
インストール数 34
現在のバージョン 0.4.0
最終更新日 2015-12-15
公開日 2015-12-15
評価 3.00/5 合計 2 レビュー
開発者 roberthartjr
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hearthstone Deck Highlighter",
    "version": "0.4.0",
    "description": "A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection",
    "author": "Robert Hart",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.hearthpwn.com\/decks\/*",
                "http:\/\/www.hearthpwn.com\/members\/*\/collection"
            ],
            "js": [
                "jquery-2.1.4.js",
                "functions.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "*.json",
        "options.html"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}