Wowhead Quest Checker

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

Wowhead Quest Checkerคืออะไร?

Wowhead Quest Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aki และคุณลักษณะหลักของมันคือ "Check if your character has completed a quest, right on wowhead.com"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wowhead Quest Checker

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}