Simple Remove Element

Adds a context menu to remove an element from a page

Cos'è Simple Remove Element?

Simple Remove Element è un'estensione di Chrome sviluppata da elfakyn, e la sua funzione principale è "Adds a context menu to remove an element from a page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple Remove Element

Scarica i file di estensione Simple Remove Element in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Simple Remove Element Simple Remove Element
ID mlfckaclcmmggacnimimmeepailfhokj
URL Ufficiale https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj
Descrizione Adds a context menu to remove an element from a page
Dimensione del File 6.53 KB
Conteggio Installazioni 21
Versione Corrente 1.0.4
Ultimo Aggiornamento 2019-11-08
Data di Pubblicazione 2019-11-05
Sviluppatore elfakyn
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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'"
}