Remove Element

This extension will remove any element

Wat is Remove Element?

Remove Element is een Chrome-extensie ontwikkeld door mnetzer, en de belangrijkste functie is "This extension will remove any element".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Remove Element

Download Remove Element-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Have you ever wanted to blast any element on the page? This will do it. 100% Guaranteed to remove any element with a simple right click -> Remove Element. This works on iframes as well which basically means you can even get rid of elements inside video frames such as youtube vimeo and twitch! 

Also, this is open-source! So if you want to see how this was created check this out:
https://github.com/moishinetzer/remove-element                    

Basisinformatie over de Extensie

Naam Remove Element Remove Element
ID nmndcjhenmoghainokenbpgakopbplpk
Officiële URL https://chromewebstore.google.com/detail/remove-element/nmndcjhenmoghainokenbpgakopbplpk
Beschrijving This extension will remove any element
Bestandsgrootte 150 KB
Aantal Installaties 81
Huidige Versie 1.0
Laatst Bijgewerkt 2021-02-02
Publicatiedatum 2021-02-02
Ontwikkelaar mnetzer
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/moishinetzer/remove-element
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "This extension will remove any element",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "script.js",
        "background.js"
    ],
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "script.js"
            ],
            "match_about_blank": true,
            "run_at": "document_idle"
        }
    ]
}