RemoveElement

Remove HTML elements from the right-click context menu

Apa itu RemoveElement?

RemoveElement adalah ekstensi Chrome yang dikembangkan oleh sa1hon, dan fitur utamanya adalah "Remove HTML elements from the right-click context menu".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi RemoveElement

Unduh file ekstensi RemoveElement 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

                        More easily remove elements without opening developer tools.

Right-click over the HTML element you want to delete.
You can view the tag name and size in the context menu.
And all you have to do is click it.                    

Informasi Dasar Ekstensi

Nama RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
URL Resmi https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
Deskripsi Remove HTML elements from the right-click context menu
Ukuran File 11.65 KB
Jumlah Instalasi 94
Versi Saat Ini 0.0.6
Terakhir Diperbarui 2023-03-02
Tanggal Publikasi 2019-12-29
Pengembang sa1hon
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/saihon/remove-element
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemoveElement",
    "version": "0.0.6",
    "description": "Remove HTML elements from the right-click context menu",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/removeElement.js"
            ]
        }
    ],
    "manifest_version": 2
}