Simple Remove Element
Adds a context menu to remove an element from a page
Was ist Simple Remove Element?
Simple Remove Element ist eine Chrome-Erweiterung, die von elfakyn entwickelt wurde, und ihr Hauptmerkmal ist "Adds a context menu to remove an element from a page".
Erweiterungsscreenshots
Simple Remove Element-Erweiterungs-CRX-Datei herunterladen
Laden Sie Simple 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
Adds a right-click menu item to remove an element from a page. Right click on an item, select "Remove element", and the element is gone. Extensions that can read data on all websites are scary. This extension is: Open-source Secure Efficient Auditable As simple as can be Designed with minimal permissions (still needs access to the active tab) Submit an issue in the GitHub page if you encounter any issues: https://github.com/elfakyn/simple-remove-element
Grundlegende Informationen zur Erweiterung
Name | Simple Remove Element |
ID | mlfckaclcmmggacnimimmeepailfhokj |
Offizielle URL | https://chromewebstore.google.com/detail/simple-remove-element/mlfckaclcmmggacnimimmeepailfhokj |
Beschreibung | Adds a context menu to remove an element from a page |
Dateigröße | 6.53 KB |
Installationsanzahl | 21 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2019-11-08 |
Veröffentlichungsdatum | 2019-11-05 |
Entwickler | elfakyn |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Remove Element", "short_name": "Remove Element", "version": "1.0.4", "description": "Adds a context menu to remove an element from a page", "manifest_version": 2, "icons": { "48": "remove_48.png", "128": "remove_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "remove_element.js" ], "run_at": "document_idle" } ], "permissions": [ "contextMenus", "activeTab" ], "content_security_policy": "script-src 'self'; object-src 'none'; default-src 'none'" } |