Wowhead Quest Checker

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

What is Wowhead Quest Checker?

Wowhead Quest Checker is a Chrome extension developed by Aki, and its main feature is "Check if your character has completed a quest, right on wowhead.com".

Extension Screenshots

screenshot

Download Wowhead Quest Checker Extension CRX File

Download Wowhead Quest Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Wowhead Quest Checker Wowhead Quest Checker
ID hnahkckjmgcjjpdfckgcfecmkppmcdkb
Official URL https://chrome.google.com/webstore/detail/wowhead-quest-checker/hnahkckjmgcjjpdfckgcfecmkppmcdkb
Description Check if your character has completed a quest, right on wowhead.com
File Size 15.65 KB
Installation Count 22
Current Version 1.0.1
Last Updated 2015-01-17
Publish Date 2015-01-17
Rating 2.00/5 Total 1 Ratings
Developer Aki
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}