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 je Sticky Header Hider aka Fixed Header Fixer?

Sticky Header Hider aka Fixed Header Fixer je rozšíření Chrome vyvinuté https://emojistuff.com, a jeho hlavní funkcí je „Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Sticky Header Hider aka Fixed Header Fixer

Stáhněte si soubory rozšíření Sticky Header Hider aka Fixed Header Fixer 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í

                        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.                    

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

Název Sticky Header Hider aka Fixed Header Fixer Sticky Header Hider aka Fixed Header Fixer
ID eagncneohcoiofhknkofdobphnhgblad
Oficiální URL https://chromewebstore.google.com/detail/sticky-header-hider-aka-f/eagncneohcoiofhknkofdobphnhgblad
Popis Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
Velikost souboru 79.52 KB
Počet instalací 292
Aktuální Verze 0.1.01
Poslední Aktualizace 2020-10-02
Datum Vydání 2017-12-16
Hodnocení 4.06/5 Celkem 17 Hodnocení
Vývojář https://emojistuff.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.emojistuff.com
URL Stránky Zásad Ochrany Soukromí https://www.growbotforfollowers.com/privacy-policy.html
Podporované Jazyky 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": [
        "*.*"
    ]
}