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!

Qu'est-ce que Delete Elements ?

Delete Elements est une extension Chrome développée par Kira L, et sa fonction principale est "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!".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Delete Elements

Téléchargez les fichiers d'extension Delete Elements au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Delete Elements Delete Elements
ID egaeolhpclgmcegebneaibocfffkgode
URL Officiel https://chromewebstore.google.com/detail/delete-elements/egaeolhpclgmcegebneaibocfffkgode
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!
Taille du Fichier 7.14 KB
Nombre d'Installations 31
Version Actuelle 1.0
Dernière Mise à Jour 2020-09-11
Date de Publication 2020-09-11
Développeur Kira L
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://kiraprograms.com
URL de la Page d'Aide http://kiraprograms.com
Langues Prises en Charge 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
}