Remove Element

This extension will remove any element

Vad är Remove Element?

Remove Element är en Chrome-tillägg utvecklad av mnetzer, och dess huvudfunktion är "This extension will remove any element".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

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

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

Grundläggande Information om Tillägg

Namn Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
Officiell webbadress https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Beskrivning This extension will remove any element
Filstorlek 150 KB
Antal Installationer 81
Aktuell Version 1.0
Senast Uppdaterad 2021-02-02
Publiceringsdatum 2021-02-02
Utvecklare mnetzer
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/moishinetzer/remove-element
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}