Remove Element
Remove an HTML element from the context menu (right-click).
Vad är Remove Element?
Remove Element är en Chrome-tillägg utvecklad av atheimanksu, och dess huvudfunktion är "Remove an HTML element from the context menu (right-click).".
Tilläggsskärmbilder
Ladda ner Remove Element-förlängningens CRX-fil
Ladda ner Remove Element-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Remove Element |
ID | jmmocdecnafloeaphiidpofionaifhjo |
Officiell webbadress | https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo |
Beskrivning | Remove an HTML element from the context menu (right-click). |
Filstorlek | 178 KB |
Antal Installationer | 363 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2015-09-03 |
Publiceringsdatum | 2015-09-02 |
Betyg | 2.00/5 Totalt 8 Betyg |
Utvecklare | atheimanksu |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |