Kill Button

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

什麼是Kill Button?

Kill Button是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.”。

擴展截圖

screenshot
screenshot

下載Kill Button擴展crx文件

下載Kill Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Kill Button Kill Button
ID meflldekhdenalgeanoajgkhlmjmkjfb
官方網址 https://chromewebstore.google.com/detail/kill-button/meflldekhdenalgeanoajgkhlmjmkjfb
簡介 This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.
檔案大小 6.4 KB
安裝次數 159
目前版本 1.0
更新時間 2019-05-21
上架時間 2019-05-16
評分 3.00/5 共 1 次評分
開發者 Unknown
付費類型 free
支援的語言 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"
    ]
}