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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hearthstone Deck Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
    }
}