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…

¿Qué es Sticky Header Hider aka Fixed Header Fixer?

Sticky Header Hider aka Fixed Header Fixer es una extensión de Chrome desarrollada por https://emojistuff.com, y su función principal es "Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Sticky Header Hider aka Fixed Header Fixer

Descarga archivos de extensión Sticky Header Hider aka Fixed Header Fixer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Sticky Header Hider aka Fixed Header Fixer Sticky Header Hider aka Fixed Header Fixer
ID eagncneohcoiofhknkofdobphnhgblad
URL Oficial https://chromewebstore.google.com/detail/sticky-header-hider-aka-f/eagncneohcoiofhknkofdobphnhgblad
Descripción Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
Tamaño del Archivo 79.52 KB
Cantidad de Instalaciones 292
Versión Actual 0.1.01
Última Actualización 2020-10-02
Fecha de Publicación 2017-12-16
Calificación 4.06/5 Total de 17 Calificaciones
Desarrollador https://emojistuff.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.emojistuff.com
URL de la Página de Política de Privacidad https://www.growbotforfollowers.com/privacy-policy.html
Idiomas Soportados 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": [
        "*.*"
    ]
}