elementZapper

Disappear at once!

Wat is elementZapper?

elementZapper is een Chrome-extensie ontwikkeld door http://www.dsebastien.net, en de belangrijkste functie is "Disappear at once!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie elementZapper

Download elementZapper-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

                        This extension allows you to easily remove elements from Web pages.

Let's say that a gigantic cat image is bothering you (though you find it lovely) on some Website. You want it gone? Then right click on it, select "Zap!" and there you have it, gone!

The same applies to selections that you make on pages; just select a bunch of paragraphs, images, etc, right click, select "Zap!" and they're gone.                    

Basisinformatie over de Extensie

Naam elementZapper elementZapper
ID efeljanahmlnjhckmohcfbgkfdjdmnog
Officiële URL https://chrome.google.com/webstore/detail/elementzapper/efeljanahmlnjhckmohcfbgkfdjdmnog
Beschrijving Disappear at once!
Bestandsgrootte 18.52 KB
Aantal Installaties 459
Huidige Versie 1.1
Laatst Bijgewerkt 2013-05-13
Publicatiedatum 2013-05-13
Beoordeling 2.33/5 Totaal 3 Beoordelingen
Ontwikkelaar http://www.dsebastien.net
Betalingswijze free
Extensiewebsite http://www.dsebastien.net
Help Pagina-URL https://github.com/dsebastien/elementZapper
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "elementZapper",
    "description": "Disappear at once!",
    "version": "1.1",
    "icons": {
        "128": "zap_128.png",
        "64": "zap_64.png",
        "32": "zap_32.png",
        "16": "zap_16.png"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}