Delete Elements

Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!

Vad är Delete Elements?

Delete Elements är en Chrome-tillägg utvecklad av Kira L, och dess huvudfunktion är "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Delete Elements-förlängningens CRX-fil

Ladda ner Delete Elements-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

                        My chrome extension allows you to delete any element that you don't want to see on a website using alt+click. After installing this extension, you can focus on the content of a website, instead of the navigation bars, side-bars, and unwanted images. Enjoy!                    

Grundläggande Information om Tillägg

Namn Delete Elements Delete Elements
ID egaeolhpclgmcegebneaibocfffkgode
Officiell webbadress https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode
Beskrivning Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!
Filstorlek 7.14 KB
Antal Installationer 31
Aktuell Version 1.0
Senast Uppdaterad 2020-09-11
Publiceringsdatum 2020-09-11
Utvecklare Kira L
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://kiraprograms.com
Hjälpsida URL http://kiraprograms.com
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Delete Elements",
    "version": "1.0",
    "description": "Alt+click an element to delete it. You can remove pop ups, headers, or anything else on a website that you don't want to see!",
    "permissions": [],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "add_to_website.js"
            ]
        }
    ],
    "manifest_version": 2
}