Remove Element
Remove an HTML element from the context menu (right-click).
Co to jest Remove Element?
Remove Element to rozszerzenie Chrome opracowane przez atheimanksu, a jego główną funkcją jest „Remove an HTML element from the context menu (right-click).”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Remove Element
Pobierz pliki rozszerzeń Remove Element w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Remove Element |
ID | jmmocdecnafloeaphiidpofionaifhjo |
Oficjalny URL | https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo |
Opis | Remove an HTML element from the context menu (right-click). |
Rozmiar pliku | 178 KB |
Liczba instalacji | 363 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2015-09-03 |
Data Publikacji | 2015-09-02 |
Ocena | 2.00/5 Łącznie 8 Oceny |
Deweloper | atheimanksu |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |