Hearthstone Deck Highlighter

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

Qu'est-ce que Hearthstone Deck Highlighter ?

Hearthstone Deck Highlighter est une extension Chrome développée par roberthartjr, et sa fonction principale est "A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Hearthstone Deck Highlighter

Téléchargez les fichiers d'extension Hearthstone Deck Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hearthstone Deck Highlighter Hearthstone Deck Highlighter
ID jepahkmnkblfichnniogaiodomcojjkc
URL Officiel https://chromewebstore.google.com/detail/hearthstone-deck-highligh/jepahkmnkblfichnniogaiodomcojjkc
Description A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection
Taille du Fichier 87.09 KB
Nombre d'Installations 34
Version Actuelle 0.4.0
Dernière Mise à Jour 2015-12-15
Date de Publication 2015-12-15
Évaluation 3.00/5 Total 2 Évaluations
Développeur roberthartjr
Type de Paiement free
Langues Prises en Charge 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
    }
}