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…

Co to jest Sticky Header Hider aka Fixed Header Fixer?

Sticky Header Hider aka Fixed Header Fixer to rozszerzenie Chrome opracowane przez https://emojistuff.com, a jego główną funkcją jest „Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Sticky Header Hider aka Fixed Header Fixer

Pobierz pliki rozszerzeń Sticky Header Hider aka Fixed Header Fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Sticky Header Hider aka Fixed Header Fixer Sticky Header Hider aka Fixed Header Fixer
ID eagncneohcoiofhknkofdobphnhgblad
Oficjalny URL https://chromewebstore.google.com/detail/sticky-header-hider-aka-f/eagncneohcoiofhknkofdobphnhgblad
Opis Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
Rozmiar pliku 79.52 KB
Liczba instalacji 292
Aktualna Wersja 0.1.01
Ostatnia Aktualizacja 2020-10-02
Data Publikacji 2017-12-16
Ocena 4.06/5 Łącznie 17 Oceny
Deweloper https://emojistuff.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.emojistuff.com
Adres URL Strony Polityki Prywatności https://www.growbotforfollowers.com/privacy-policy.html
Obsługiwane Języki 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": [
        "*.*"
    ]
}