Sticky Header Hider aka Fixed Header Fixer

Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…

Что такое Sticky Header Hider aka Fixed Header Fixer?

Sticky Header Hider aka Fixed Header Fixer - это расширение Chrome, разработанное https://emojistuff.com, и его основная функция - "Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Sticky Header Hider aka Fixed Header Fixer

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

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

                        Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while you scroll down the page.                    

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

Название Sticky Header Hider aka Fixed Header Fixer Sticky Header Hider aka Fixed Header Fixer
ID eagncneohcoiofhknkofdobphnhgblad
Официальный URL https://chromewebstore.google.com/detail/sticky-header-hider-aka-f/eagncneohcoiofhknkofdobphnhgblad
Описание Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
Размер файла 79.52 KB
Количество установок 292
Текущая Версия 0.1.01
Последнее Обновление 2020-10-02
Дата публикации 2017-12-16
Рейтинг 4.06/5 Всего 17 оценок
Разработчик https://emojistuff.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.emojistuff.com
URL страницы политики конфиденциальности https://www.growbotforfollowers.com/privacy-policy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "",
    "default_locale": "en",
    "version": "0.1.01",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "backgroundscript.js",
            "hot-reload.js"
        ]
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage",
        "https:\/\/www.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "*.*"
    ]
}