Simple Remove Element

Adds a context menu to remove an element from a page

Qu'est-ce que Simple Remove Element ?

Simple Remove Element est une extension Chrome développée par elfakyn, et sa fonction principale est "Adds a context menu to remove an element from a page".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Simple Remove Element

Téléchargez les fichiers d'extension Simple Remove Element au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Simple Remove Element Simple Remove Element
ID mlfckaclcmmggacnimimmeepailfhokj
URL Officiel https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj
Description Adds a context menu to remove an element from a page
Taille du Fichier 6.53 KB
Nombre d'Installations 21
Version Actuelle 1.0.4
Dernière Mise à Jour 2019-11-08
Date de Publication 2019-11-05
Développeur elfakyn
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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'"
}