Wowhead Quest Checker

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

什麼是Wowhead Quest Checker?

Wowhead Quest Checker是由Aki開發的Chrome擴展程式,該擴展的主要功能是“Check if your character has completed a quest, right on wowhead.com”。

擴展截圖

screenshot

下載Wowhead Quest Checker擴展crx文件

下載Wowhead Quest Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}