WowHead IFrameBlocker

This extension stops wowhead from using iframes and other advertising annoyances.

WowHead IFrameBlockerคืออะไร?

WowHead IFrameBlocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joseph Gordon และคุณลักษณะหลักของมันคือ "This extension stops wowhead from using iframes and other advertising annoyances."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WowHead IFrameBlocker

ดาวน์โหลดไฟล์ส่วนขยาย WowHead IFrameBlocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WowHead IFrameBlocker WowHead IFrameBlocker
ID bphdakfechdihlgbkaogkamgccfjkcnd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/wowhead-iframeblocker/bphdakfechdihlgbkaogkamgccfjkcnd
คำอธิบาย This extension stops wowhead from using iframes and other advertising annoyances.
ขนาดไฟล์ 31.22 KB
จำนวนการติดตั้ง 299
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2017-11-05
วันที่เผยแพร่ 2017-11-05
คะแนน 4.60/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา Joseph Gordon
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WowHead IFrameBlocker",
    "description": "This extension stops wowhead from using iframes and other advertising annoyances.",
    "version": "1.4",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.wowhead.com\/*"
            ],
            "js": [
                "jquery.js",
                "injector.js"
            ],
            "css": [
                "injector.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "*:\/\/*.wowhead.com\/*"
    ]
}