DOM Destroyer

Delete anything on a website with a click.

DOM Destroyerคืออะไร?

DOM Destroyer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Phil Schleihauf และคุณลักษณะหลักของมันคือ "Delete anything on a website with a click."

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

screenshot

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

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

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

                        DOM Destroyer empowers you to remove anything that annoys you from a web page by just clicking on it. Get rid of newsletter popups, content-hiding overlays, and all kinds of other noisy clutter!

Note that this extension only temporarily hides elements from your view -- to get them back, just refresh the page.                    

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

ชื่อ DOM Destroyer DOM Destroyer
ID cgkjfaoibdibeghgeplabcbineebklgf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf
คำอธิบาย Delete anything on a website with a click.
ขนาดไฟล์ 12.62 KB
จำนวนการติดตั้ง 2,836
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2021-03-29
วันที่เผยแพร่ 2014-02-25
คะแนน 3.76/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา Phil Schleihauf
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://github.com/uniphil/dom-destroyer
URL หน้าช่วยเหลือ http://github.com/uniphil/dom-destroyer/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DOM Destroyer",
    "description": "Delete anything on a website with a click.",
    "version": "0.3",
    "browser_action": {
        "default_title": "Destroy DOM",
        "default_icon": "destroy_128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "toggle-armed": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Toggle DOM destruction mode"
        }
    },
    "homepage_url": "http:\/\/github.com\/uniphil\/dom-destroyer"
}