Remove Element
Creates a contextual menu item to remove an element from the DOM
Was ist Remove Element?
Remove Element ist eine Chrome-Erweiterung, die von https://weilstreet.com entwickelt wurde, und ihr Hauptmerkmal ist "Creates a contextual menu item to remove an element from the DOM".
Erweiterungsscreenshots
Remove Element-Erweiterungs-CRX-Datei herunterladen
Laden Sie Remove Element-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
Offizielle URL | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
Beschreibung | Creates a contextual menu item to remove an element from the DOM |
Dateigröße | 6.35 KB |
Installationsanzahl | 2,523 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2018-09-05 |
Veröffentlichungsdatum | 2018-09-04 |
Bewertung | 3.94/5 Insgesamt 32 Bewertungen |
Entwickler | https://weilstreet.com |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |