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…

O que é Sticky Header Hider aka Fixed Header Fixer?

Sticky Header Hider aka Fixed Header Fixer é uma extensão do Chrome desenvolvida por https://emojistuff.com, e sua principal característica é "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 Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Sticky Header Hider aka Fixed Header Fixer

Baixe arquivos de extensão Sticky Header Hider aka Fixed Header Fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 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
Descrição Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
Tamanho do Arquivo 79.52 KB
Contagem de Instalações 292
Versão Atual 0.1.01
Última Atualização 2020-10-02
Data de Publicação 2017-12-16
Classificação 4.06/5 Total de 17 Avaliações
Desenvolvedor https://emojistuff.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.emojistuff.com
URL da Página de Política de Privacidade https://www.growbotforfollowers.com/privacy-policy.html
Idiomas Suportados 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": [
        "*.*"
    ]
}