DOM Destroyer

Delete anything on a website with a click.

Apa itu DOM Destroyer?

DOM Destroyer adalah ekstensi Chrome yang dikembangkan oleh Phil Schleihauf, dan fitur utamanya adalah "Delete anything on a website with a click.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi DOM Destroyer

Unduh file ekstensi DOM Destroyer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama DOM Destroyer DOM Destroyer
ID cgkjfaoibdibeghgeplabcbineebklgf
URL Resmi https://chromewebstore.google.com/detail/dom-destroyer/cgkjfaoibdibeghgeplabcbineebklgf
Deskripsi Delete anything on a website with a click.
Ukuran File 12.62 KB
Jumlah Instalasi 2,836
Versi Saat Ini 0.3
Terakhir Diperbarui 2021-03-29
Tanggal Publikasi 2014-02-25
Penilaian 3.76/5 Total 17 Penilaian
Pengembang Phil Schleihauf
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://github.com/uniphil/dom-destroyer
URL Halaman Bantuan http://github.com/uniphil/dom-destroyer/issues
Bahasa yang Didukung 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"
}