Remove Element

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

Vad är Remove Element?

Remove Element är en Chrome-tillägg utvecklad av https://weilstreet.com, och dess huvudfunktion är "Creates a contextual menu item to remove an element from the DOM".

Tilläggsskärmbilder

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

                        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.                    

Grundläggande Information om Tillägg

Namn Remove Element Remove Element
ID lnfececmldedlanmhbeljgdaofncfeho
Officiell webbadress https://chromewebstore.google.com/detail/remove-element/lnfececmldedlanmhbeljgdaofncfeho
Beskrivning Creates a contextual menu item to remove an element from the DOM
Filstorlek 6.35 KB
Antal Installationer 2,523
Aktuell Version 1.0.2
Senast Uppdaterad 2018-09-05
Publiceringsdatum 2018-09-04
Betyg 3.94/5 Totalt 32 Betyg
Utvecklare https://weilstreet.com
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}