RemoveElement

Remove HTML elements from the right-click context menu

Vad är RemoveElement?

RemoveElement är en Chrome-tillägg utvecklad av sa1hon, och dess huvudfunktion är "Remove HTML elements from the right-click context menu".

Tilläggsskärmbilder

screenshot

Ladda ner RemoveElement-förlängningens CRX-fil

Ladda ner RemoveElement-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

                        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.                    

Grundläggande Information om Tillägg

Namn RemoveElement RemoveElement
ID jjhnenbbbbgojdbealmpdkmbkbnmeimf
Officiell webbadress https://chromewebstore.google.com/detail/removeelement/jjhnenbbbbgojdbealmpdkmbkbnmeimf
Beskrivning Remove HTML elements from the right-click context menu
Filstorlek 11.65 KB
Antal Installationer 94
Aktuell Version 0.0.6
Senast Uppdaterad 2023-03-02
Publiceringsdatum 2019-12-29
Utvecklare sa1hon
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/saihon/remove-element
Stödda Språk 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
}