Remove Element

Creates a contextual menu item to remove an element from the DOM

Qu'est-ce que Remove Element ?

Remove Element est une extension Chrome développée par https://weilstreet.com, et sa fonction principale est "Creates a contextual menu item to remove an element from the DOM".

Captures d'Écran de l'Extension

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

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

Informations de Base sur l'Extension

Nom Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
URL Officiel https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Description Creates a contextual menu item to remove an element from the DOM
Taille du Fichier 6.35 KB
Nombre d'Installations 2,523
Version Actuelle 1.0.2
Dernière Mise à Jour 2018-09-05
Date de Publication 2018-09-04
Évaluation 3.94/5 Total 32 Évaluations
Développeur https://weilstreet.com
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}