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 - это расширение Chrome, разработанное Unknown, и его основная функция - "This button removes elements on web pages. Click once to remove elements, click another time or press escape to continue surfing.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Kill Button

Скачайте файлы расширений 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"
    ]
}