removeanything

sometimes you just want to get rid of an element quickly

Qu'est-ce que removeanything ?

removeanything est une extension Chrome développée par zeyus, et sa fonction principale est "sometimes you just want to get rid of an element quickly".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension removeanything

Téléchargez les fichiers d'extension removeanything 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

                        This is a really simple extension to remove any element from a page by right clicking.

This is useful if you want to hid an image, or an ad form an article, or popups that block a site unless you register, that kind of thing.                    

Informations de Base sur l'Extension

Nom removeanything removeanything
ID gmlkkilfhaiefnbnbgbmoodkebnpicfj
URL Officiel https://chromewebstore.google.com/detail/removeanything/gmlkkilfhaiefnbnbgbmoodkebnpicfj
Description sometimes you just want to get rid of an element quickly
Taille du Fichier 11.31 KB
Nombre d'Installations 230
Version Actuelle 0.1.0
Dernière Mise à Jour 2015-02-16
Date de Publication 2015-02-16
Évaluation 3.17/5 Total 6 Évaluations
Développeur zeyus
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://www.zeyus.com/
URL de la Page d'Aide https://github.com/zeyus/remove-anything
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "removeanything",
    "description": "sometimes you just want to get rid of an element quickly",
    "version": "0.1.0",
    "icons": {
        "128": "res\/icon128.png",
        "16": "res\/icon16.png",
        "48": "res\/icon48.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}