Simple Remove Element

Adds a context menu to remove an element from a page

Apa itu Simple Remove Element?

Simple Remove Element adalah ekstensi Chrome yang dikembangkan oleh elfakyn, dan fitur utamanya adalah "Adds a context menu to remove an element from a page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Simple Remove Element

Unduh file ekstensi Simple Remove Element 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

                        Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone.

Extensions that can read data on all websites are scary. This extension is:

Open-source
Secure
Efficient
Auditable
As simple as can be
Designed with minimal permissions (still needs access to the active tab)

Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element                    

Informasi Dasar Ekstensi

Nama Simple Remove Element Simple Remove Element
ID mlfckaclcmmggacnimimmeepailfhokj
URL Resmi https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj
Deskripsi Adds a context menu to remove an element from a page
Ukuran File 6.53 KB
Jumlah Instalasi 21
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2019-11-08
Tanggal Publikasi 2019-11-05
Pengembang elfakyn
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple Remove Element",
    "short_name": "Remove Element",
    "version": "1.0.4",
    "description": "Adds a context menu to remove an element from a page",
    "manifest_version": 2,
    "icons": {
        "48": "remove_48.png",
        "128": "remove_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove_element.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'"
}