Remove Element

This extension will remove any element

Co je Remove Element?

Remove Element je rozšíření Chrome vyvinuté mnetzer, a jeho hlavní funkcí je „This extension will remove any element“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Remove Element

Stáhněte si soubory rozšíření Remove Element ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
Oficiální URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Popis This extension will remove any element
Velikost souboru 150 KB
Počet instalací 81
Aktuální Verze 1.0
Poslední Aktualizace 2021-02-02
Datum Vydání 2021-02-02
Vývojář mnetzer
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/moishinetzer/remove-element
Podporované Jazyky 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"
        }
    ]
}