Remove Element
Remove an HTML element from the context menu (right-click).
Cos'è Remove Element?
Remove Element è un'estensione di Chrome sviluppata da atheimanksu, e la sua funzione principale è "Remove an HTML element from the context menu (right-click).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Remove Element
Scarica i file di estensione Remove Element in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu. Extremely simple and efficient code is available at https://github.com/atheiman/remove-element
Informazioni di Base sull'Estensione
Nome | Remove Element |
ID | jmmocdecnafloeaphiidpofionaifhjo |
URL Ufficiale | https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo |
Descrizione | Remove an HTML element from the context menu (right-click). |
Dimensione del File | 178 KB |
Conteggio Installazioni | 363 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-09-03 |
Data di Pubblicazione | 2015-09-02 |
Valutazione | 2.00/5 Totale 8 Valutazioni |
Sviluppatore | atheimanksu |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Element", "description": "Remove an HTML element from the context menu (right-click).", "version": "1.0", "author": "Austin Heiman", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "images\/red-x-16.png", "48": "images\/red-x-48.png", "128": "images\/red-x-128.png" }, "background": { "scripts": [ "event.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ] } ] } |