RemoveElement

Remove HTML elements from the right-click context menu

Qu'est-ce que RemoveElement ?

RemoveElement est une extension Chrome développée par sa1hon, et sa fonction principale est "Remove HTML elements from the right-click context menu".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension RemoveElement

Téléchargez les fichiers d'extension RemoveElement 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

                        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.                    

Informations de Base sur l'Extension

Nom RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
URL Officiel https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
Description Remove HTML elements from the right-click context menu
Taille du Fichier 11.65 KB
Nombre d'Installations 94
Version Actuelle 0.0.6
Dernière Mise à Jour 2023-03-02
Date de Publication 2019-12-29
Développeur sa1hon
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/saihon/remove-element
Langues Prises en Charge 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
}