ekill

Remove unwanted elements from a page quickly!

ekillとは何ですか?

ekillはrhardihによって開発されたChromeの拡張機能で、その主な機能は「Remove unwanted elements from a page quickly!」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

ekill拡張機能のCRXファイルをダウンロード

ekill拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Allows you to kill any element that is in the way of what you want to see on a given page.

As an experimental feature, ekill will hold a grudge, meaning it can also remove elements automatically, by remembering previously targets.

Source code available at https://github.com/rhardih/ekill                    

拡張機能の基本情報

名前 ekill ekill
ID lcgdpfaiipaelnpepigdafiogebaeedg
公式URL https://chromewebstore.google.com/detail/ekill/lcgdpfaiipaelnpepigdafiogebaeedg
説明 Remove unwanted elements from a page quickly!
ファイルサイズ 88.56 KB
インストール数 4,000
現在のバージョン 1.9.0
最終更新日 2019-07-12
公開日 2019-07-12
評価 5.00/5 合計 6 レビュー
開発者 rhardih
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/rhardih/ekill
ヘルプページのURL https://github.com/rhardih/ekill
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ekill",
    "version": "1.9.0",
    "description": "Remove unwanted elements from a page quickly!",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": {
            "16": "skull-and-bones-16.png",
            "48": "skull-and-bones-48.png",
            "128": "skull-and-bones-128.png"
        },
        "theme_icons": [
            {
                "light": "skull-and-bones-16-light.png",
                "dark": "skull-and-bones-16.png",
                "size": 16
            },
            {
                "light": "skull-and-bones-48-light.png",
                "dark": "skull-and-bones-48.png",
                "size": 48
            }
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "browser_style": false,
        "chrome_style": false
    },
    "applications": {
        "gecko": {
            "id": "{e4326fc5-909b-47e0-a0af-dd3ec180dea5}",
            "strict_min_version": "42.0"
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "js\/testable.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/testable.js",
                "js\/ekill.js"
            ],
            "css": [
                "css\/ekill.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "skull-and-bones-16.png",
        "48": "skull-and-bones-48.png",
        "128": "skull-and-bones-128.png"
    },
    "web_accessible_resources": [
        "changelog.html"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "MacCtrl+Shift+K"
            }
        }
    }
}