ekill

Remove unwanted elements from a page quickly!

Co je ekill?

ekill je rozšíření Chrome vyvinuté rhardih, a jeho hlavní funkcí je „Remove unwanted elements from a page quickly!“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření ekill

Stáhněte si soubory rozšíření ekill ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název ekill ekill
ID lcgdpfaiipaelnpepigdafiogebaeedg
Oficiální URL https://chromewebstore.google.com/detail/ekill/lcgdpfaiipaelnpepigdafiogebaeedg
Popis Remove unwanted elements from a page quickly!
Velikost souboru 88.56 KB
Počet instalací 4,000
Aktuální Verze 1.9.0
Poslední Aktualizace 2019-07-12
Datum Vydání 2019-07-12
Hodnocení 5.00/5 Celkem 6 Hodnocení
Vývojář rhardih
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/rhardih/ekill
URL Stránky Nápovědy https://github.com/rhardih/ekill
Podporované Jazyky 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"
            }
        }
    }
}