Remove Element

This extension will remove any element

Co to jest Remove Element?

Remove Element to rozszerzenie Chrome opracowane przez mnetzer, a jego główną funkcją jest „This extension will remove any element”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
Oficjalny URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Opis This extension will remove any element
Rozmiar pliku 150 KB
Liczba instalacji 81
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-02-02
Data Publikacji 2021-02-02
Deweloper mnetzer
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/moishinetzer/remove-element
Obsługiwane Języki 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"
        }
    ]
}