Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Что такое Sticky Ducky?

Sticky Ducky - это расширение Chrome, разработанное Boris Lykah, и его основная функция - "Automatically cleans pages of the sticky headers and other fixed elements".

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

screenshot
screenshot
screenshot

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

Скачайте файлы расширений Sticky Ducky в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Many websites have sticky headers, social buttons and other widgets which remain in view as you scroll. Most of the time they are useless and simply occupy the screen space.

Sticky Ducky automatically cleans the page of those sticky elements. It has settings for displaying them again on demand and a whitelist.                    

Основная информация о расширении

Название Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
Официальный URL https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Описание Automatically cleans pages of the sticky headers and other fixed elements
Размер файла 58.24 KB
Количество установок 377
Текущая Версия 1.7.2
Последнее Обновление 2022-01-30
Дата публикации 2020-03-11
Рейтинг 4.27/5 Всего 11 оценок
Разработчик Boris Lykah
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/lykahb/sticky-ducky
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sticky Ducky",
    "author": "Boris Lykah",
    "description": "Automatically cleans pages of the sticky headers and other fixed elements",
    "version": "1.7.2",
    "minimum_chrome_version": "51",
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "assets\/icon48.png"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "lib\/underscore.js",
            "lib\/css-what.js",
            "js\/vapiBackground.js",
            "js\/explorer.js",
            "js\/whitelist.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/underscore.js",
                "lib\/css-what.js",
                "js\/vapiInjected.js",
                "js\/explorer.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ]
}