Wowhead Quest Checker

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

¿Qué es Wowhead Quest Checker?

Wowhead Quest Checker es una extensión de Chrome desarrollada por Aki, y su función principal es "Check if your character has completed a quest, right on wowhead.com".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Wowhead Quest Checker

Descarga archivos de extensión Wowhead Quest Checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Wowhead Quest Checker Wowhead Quest Checker
ID hnahkckjmgcjjpdfckgcfecmkppmcdkb
URL Oficial https://chrome.google.com/webstore/detail/wowhead-quest-checker/hnahkckjmgcjjpdfckgcfecmkppmcdkb
Descripción Check if your character has completed a quest, right on wowhead.com
Tamaño del Archivo 15.65 KB
Cantidad de Instalaciones 22
Versión Actual 1.0.1
Última Actualización 2015-01-17
Fecha de Publicación 2015-01-17
Calificación 2.00/5 Total de 1 Calificaciones
Desarrollador Aki
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}