Remove Element

Remove an HTML element from the context menu (right-click).

Wat is Remove Element?

Remove Element is een Chrome-extensie ontwikkeld door atheimanksu, en de belangrijkste functie is "Remove an HTML element from the context menu (right-click).".

Extensie Screenshots

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

                        Remove Element allows you to remove any HTML element by right clicking the element and selecting "Remove Element" from the Chrome context menu.

Extremely simple and efficient code is available at https://github.com/atheiman/remove-element                    

Basisinformatie over de Extensie

Naam Remove Element Remove Element
ID jmmocdecnafloeaphiidpofionaifhjo
Officiële URL https://chromewebstore.google.com/detail/remove-element/jmmocdecnafloeaphiidpofionaifhjo
Beschrijving Remove an HTML element from the context menu (right-click).
Bestandsgrootte 178 KB
Aantal Installaties 363
Huidige Versie 1.0
Laatst Bijgewerkt 2015-09-03
Publicatiedatum 2015-09-02
Beoordeling 2.00/5 Totaal 8 Beoordelingen
Ontwikkelaar atheimanksu
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Remove Element",
    "description": "Remove an HTML element from the context menu (right-click).",
    "version": "1.0",
    "author": "Austin Heiman",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "images\/red-x-16.png",
        "48": "images\/red-x-48.png",
        "128": "images\/red-x-128.png"
    },
    "background": {
        "scripts": [
            "event.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}