Kill Button

This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.

Qu'est-ce que Kill Button ?

Kill Button est une extension Chrome développée par Unknown, et sa fonction principale est "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Kill Button

Téléchargez les fichiers d'extension Kill Button 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 button removes elements on web pages. Just click the kill button (trash can) so it turns red. You can now hover over website elements, which will become red on hovering them. Click on a website element to remove it. If you're happy with the result, press the Escape key or press the trash can again, so it becomes gray.

You might use it for developing or to remove extremely annoying flickering ads that can't be removed with ad blockers or on pages that permit the use of ad blockers. If you deleted too much, please refresh the page.                    

Informations de Base sur l'Extension

Nom Kill Button Kill Button
ID meflldekhdenalgeanoajgkhlmjmkjfb
URL Officiel https://chromewebstore.google.com/detail/kill-button/meflldekhdenalgeanoajgkhlmjmkjfb
Description This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.
Taille du Fichier 6.4 KB
Nombre d'Installations 159
Version Actuelle 1.0
Dernière Mise à Jour 2019-05-21
Date de Publication 2019-05-16
Évaluation 3.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Kill Button",
    "description": "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.",
    "version": "1.0",
    "author": "Matthias Luh",
    "icons": {
        "48": "icon_48.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icon_48.png"
        },
        "default_title": "Kill website elements"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}