Remove Element

Remove an HTML element from the context menu (right-click).

Qu'est-ce que Remove Element ?

Remove Element est une extension Chrome développée par atheimanksu, et sa fonction principale est "Remove an HTML element from the context menu (right-click).".

Captures d'Écran de l'Extension

screenshot
screenshot

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

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

                        Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu.

Extremely simple and efficient code is available at https://github.com/atheiman/remove-element                    

Informations de Base sur l'Extension

Nom Remove Element Remove Element
ID jmmocdecnafloeaphiidpofionaifhjo
URL Officiel https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo
Description Remove an HTML element from the context menu (right-click).
Taille du Fichier 178 KB
Nombre d'Installations 363
Version Actuelle 1.0
Dernière Mise à Jour 2015-09-03
Date de Publication 2015-09-02
Évaluation 2.00/5 Total 8 Évaluations
Développeur atheimanksu
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "Remove an HTML element from the context menu (right-click).",
    "version": "1.0",
    "author": "Austin Heiman",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/red-x-16.png",
        "48": "images\/red-x-48.png",
        "128": "images\/red-x-128.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}