Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

O que é Sticky Ducky?

Sticky Ducky é uma extensão do Chrome desenvolvida por Boris Lykah, e sua principal característica é "Automatically cleans pages of the sticky headers and other fixed elements".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Sticky Ducky

Baixe arquivos de extensão Sticky Ducky 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

                        Many websites have sticky headers, social buttons and other widgets which remain in view as you scroll. Most of the time they are useless and simply occupy the screen space.

Sticky Ducky automatically cleans the page of those sticky elements. It has settings for displaying them again on demand and a whitelist.                    

Informações Básicas da Extensão

Nome Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
URL Oficial https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Descrição Automatically cleans pages of the sticky headers and other fixed elements
Tamanho do Arquivo 58.24 KB
Contagem de Instalações 377
Versão Atual 1.7.2
Última Atualização 2022-01-30
Data de Publicação 2020-03-11
Classificação 4.27/5 Total de 11 Avaliações
Desenvolvedor Boris Lykah
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lykahb/sticky-ducky
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sticky Ducky",
    "author": "Boris Lykah",
    "description": "Automatically cleans pages of the sticky headers and other fixed elements",
    "version": "1.7.2",
    "minimum_chrome_version": "51",
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "assets\/icon48.png"
    },
    "icons": {
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "background": {
        "scripts": [
            "lib\/underscore.js",
            "lib\/css-what.js",
            "js\/vapiBackground.js",
            "js\/explorer.js",
            "js\/whitelist.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/underscore.js",
                "lib\/css-what.js",
                "js\/vapiInjected.js",
                "js\/explorer.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ]
}