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
公式URL 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"
    ]
}