RemoveElement

Remove HTML elements from the right-click context menu

Co to jest RemoveElement?

RemoveElement to rozszerzenie Chrome opracowane przez sa1hon, a jego główną funkcją jest „Remove HTML elements from the right-click context menu”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia RemoveElement

Pobierz pliki rozszerzeń RemoveElement 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

                        More easily remove elements without opening developer tools.

Right-click over the HTML element you want to delete.
You can view the tag name and size in the context menu.
And all you have to do is click it.                    

Podstawowe informacje o rozszerzeniu

Nazwa RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
Oficjalny URL https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
Opis Remove HTML elements from the right-click context menu
Rozmiar pliku 11.65 KB
Liczba instalacji 94
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2023-03-02
Data Publikacji 2019-12-29
Deweloper sa1hon
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/saihon/remove-element
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RemoveElement",
    "version": "0.0.6",
    "description": "Remove HTML elements from the right-click context menu",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "19": "icons\/icon-19.png",
        "16": "icons\/icon-16.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/removeElement.js"
            ]
        }
    ],
    "manifest_version": 2
}