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…

Cos'è Sticky Header Hider aka Fixed Header Fixer?

Sticky Header Hider aka Fixed Header Fixer è un'estensione di Chrome sviluppata da https://emojistuff.com, e la sua funzione principale è "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 dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Sticky Header Hider aka Fixed Header Fixer

Scarica i file di estensione Sticky Header Hider aka Fixed Header Fixer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Sticky Header Hider aka Fixed Header Fixer Sticky Header Hider aka Fixed Header Fixer
ID eagncneohcoiofhknkofdobphnhgblad
URL Ufficiale https://chromewebstore.google.com/detail/sticky-header-hider-aka-f/eagncneohcoiofhknkofdobphnhgblad
Descrizione Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
Dimensione del File 79.52 KB
Conteggio Installazioni 292
Versione Corrente 0.1.01
Ultimo Aggiornamento 2020-10-02
Data di Pubblicazione 2017-12-16
Valutazione 4.06/5 Totale 17 Valutazioni
Sviluppatore https://emojistuff.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.emojistuff.com
URL della Pagina della Politica sulla Privacy https://www.growbotforfollowers.com/privacy-policy.html
Lingue Supportate 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": [
        "*.*"
    ]
}