Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

¿Qué es Sticky Ducky?

Sticky Ducky es una extensión de Chrome desarrollada por Boris Lykah, y su función principal es "Automatically cleans pages of the sticky headers and other fixed elements".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Sticky Ducky

Descarga archivos de extensión Sticky Ducky 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

                        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.                    

Información Básica de la Extensión

Nombre Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
URL Oficial https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Descripción Automatically cleans pages of the sticky headers and other fixed elements
Tamaño del Archivo 58.24 KB
Cantidad de Instalaciones 377
Versión Actual 1.7.2
Última Actualización 2022-01-30
Fecha de Publicación 2020-03-11
Calificación 4.27/5 Total de 11 Calificaciones
Desarrollador Boris Lykah
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/lykahb/sticky-ducky
Idiomas Soportados 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"
        }
    ]
}