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
官方網址 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
    }
}