Destroy It!

Toggle the ability to destroy any ads or annoying elements of a webpage.

Destroy It!คืออะไร?

Destroy It! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thejackcohen และคุณลักษณะหลักของมันคือ "Toggle the ability to destroy any ads or annoying elements of a webpage."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Destroy It!

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

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

                                            

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

ชื่อ Destroy It! Destroy It!
ID ijikkmpakihdnnccdjpcbfomojdfbjhj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/destroy-it/ijikkmpakihdnnccdjpcbfomojdfbjhj
คำอธิบาย Toggle the ability to destroy any ads or annoying elements of a webpage.
ขนาดไฟล์ 80.51 KB
จำนวนการติดตั้ง 4,851
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-12-27
วันที่เผยแพร่ 2015-12-27
คะแนน 2.26/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา thejackcohen
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Destroy It!",
    "short_name": "Destroy It!",
    "description": "Toggle the ability to destroy any ads or annoying elements of a webpage.",
    "version": "1.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "256": "images\/icon256.png"
    },
    "browser_action": {
        "default_icon": "images\/icon128.png",
        "default_popup": "src\/popup.html",
        "default_title": "Destroy It!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/destroy.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}