Kill Button

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

Apa itu Kill Button?

Kill Button adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Kill Button

Unduh file ekstensi Kill Button dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Kill Button Kill Button
ID meflldekhdenalgeanoajgkhlmjmkjfb
URL Resmi https://chromewebstore.google.com/detail/kill-button/meflldekhdenalgeanoajgkhlmjmkjfb
Deskripsi This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.
Ukuran File 6.4 KB
Jumlah Instalasi 159
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-05-21
Tanggal Publikasi 2019-05-16
Penilaian 3.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}