Remove Element

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

Wat is Remove Element?

Remove Element is een Chrome-extensie ontwikkeld door https://weilstreet.com, en de belangrijkste functie is "Creates a contextual menu item to remove an element from the DOM".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Remove Element

Download Remove Element-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
Officiële URL https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Beschrijving Creates a contextual menu item to remove an element from the DOM
Bestandsgrootte 6.35 KB
Aantal Installaties 2,523
Huidige Versie 1.0.2
Laatst Bijgewerkt 2018-09-05
Publicatiedatum 2018-09-04
Beoordeling 3.94/5 Totaal 32 Beoordelingen
Ontwikkelaar https://weilstreet.com
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}