Wowhead Quest Checker

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

Wowhead Quest Checker क्या है?

Wowhead Quest Checker Aki द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Check if your character has completed a quest, right on wowhead.com"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Wowhead Quest Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Wowhead Quest Checker Wowhead Quest Checker
ID hnahkckjmgcjjpdfckgcfecmkppmcdkb
आधिकारिक URL https://chrome.google.com/webstore/detail/wowhead-quest-checker/hnahkckjmgcjjpdfckgcfecmkppmcdkb
विवरण Check if your character has completed a quest, right on wowhead.com
फ़ाइल का आकार 15.65 KB
स्थापना संख्या 22
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2015-01-17
प्रकाशन तिथि 2015-01-17
रेटिंग 2.00/5 कुल 1 रेटिंग्स
डेवलपर Aki
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}