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 هو إضافة Chrome تم تطويرها بواسطة roberthartjr، والميزة الرئيسية لها هي "A Chrome extension that highlights the cards on Hearthpwn that you have in your Hearthstone collection".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Hearthstone Deck Highlighter

قم بتنزيل ملفات الامتداد Hearthstone Deck Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
    }
}