Remove Element

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

Co je Remove Element?

Remove Element je rozšíření Chrome vyvinuté https://weilstreet.com, a jeho hlavní funkcí je „Creates a contextual menu item to remove an element from the DOM“.

Snímky obrazovky rozšíření

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í

                        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.                    

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

Název Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
Oficiální URL https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Popis Creates a contextual menu item to remove an element from the DOM
Velikost souboru 6.35 KB
Počet instalací 2,523
Aktuální Verze 1.0.2
Poslední Aktualizace 2018-09-05
Datum Vydání 2018-09-04
Hodnocení 3.94/5 Celkem 32 Hodnocení
Vývojář https://weilstreet.com
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}