Remove Element
Creates a contextual menu item to remove an element from the DOM
Hvad er Remove Element?
Remove Element er en Chrome-udvidelse udviklet af https://weilstreet.com, og dens hovedfunktion er "Creates a contextual menu item to remove an element from the DOM".
Udvidelsesskærmbilleder
Download Remove Element-udvidelses-CRX-fil
Download Remove Element-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Remove Element |
ID | lnfececmldedlanmhbeljgdaofncfeho |
Officiel URL | https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho |
Beskrivelse | Creates a contextual menu item to remove an element from the DOM |
Filstørrelse | 6.35 KB |
Antal Installationer | 2,523 |
Nuværende Version | 1.0.2 |
Senest Opdateret | 2018-09-05 |
Udgivelsesdato | 2018-09-04 |
Bedømmelse | 3.94/5 Samlet 32 Bedømmelser |
Udvikler | https://weilstreet.com |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |