Wowhead Quest Checker

Check if your character has completed a quest, right on wowhead.com

Co je Wowhead Quest Checker?

Wowhead Quest Checker je rozšíření Chrome vyvinuté Aki, a jeho hlavní funkcí je „Check if your character has completed a quest, right on wowhead.com“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Wowhead Quest Checker

Stáhněte si soubory rozšíření Wowhead Quest Checker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        See if your character has completed a quest, right on wowhead.com!

-- USAGE --

Once you have installed the extension, right click on the button and select options. Set your character and server there and go to a wowhead quest page. (http://www.wowhead.com/quest=31902/battle-pet-tamers-eastern-kingdoms)

Your quest status should be displayed right under Quick Facts. 

In compliance with battle.net API usage and in the interest of openness, git repo is here:

https://github.com/akinokaze/wowheadquestchecker                    

Základní Informace o Rozšíření

Název Wowhead Quest Checker Wowhead Quest Checker
ID hnahkckjmgcjjpdfckgcfecmkppmcdkb
Oficiální URL https://chrome.google.com/webstore/detail/wowhead-quest-checker/hnahkckjmgcjjpdfckgcfecmkppmcdkb
Popis Check if your character has completed a quest, right on wowhead.com
Velikost souboru 15.65 KB
Počet instalací 22
Aktuální Verze 1.0.1
Poslední Aktualizace 2015-01-17
Datum Vydání 2015-01-17
Hodnocení 2.00/5 Celkem 1 Hodnocení
Vývojář Aki
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wowhead Quest Checker",
    "description": "Check if your character has completed a quest, right on wowhead.com",
    "version": "1.0.1",
    "permissions": [
        "http:\/\/us.battle.net\/",
        "http:\/\/www.wowhead.com\/",
        "tabs",
        "activeTab",
        "storage"
    ],
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "Wowhead Quest Checker"
    },
    "manifest_version": 2,
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.wowhead.com\/quest=*"
            ],
            "js": [
                "getquest.js"
            ]
        }
    ]
}