Remove Element

Creates a contextual menu item to remove an element from the DOM

Co to jest Remove Element?

Remove Element to rozszerzenie Chrome opracowane przez https://weilstreet.com, a jego główną funkcją jest „Creates a contextual menu item to remove an element from the DOM”.

Zrzuty ekranu rozszerzenia

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

                        Right-click anything on the page and remove it. Useful if an ad is in the way of you reading an article. If you accidentally remove too much, just refresh the page - removing items is temporary.

After installation you must reload any open pages for the extension to work.                    

Podstawowe informacje o rozszerzeniu

Nazwa Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
Oficjalny URL https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Opis Creates a contextual menu item to remove an element from the DOM
Rozmiar pliku 6.35 KB
Liczba instalacji 2,523
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2018-09-05
Data Publikacji 2018-09-04
Ocena 3.94/5 Łącznie 32 Oceny
Deweloper https://weilstreet.com
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Remove Element",
    "version": "1.0.2",
    "description": "Creates a contextual menu item to remove an element from the DOM",
    "manifest_version": 2,
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "remove.js"
            ]
        }
    ]
}