Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Cos'è Sticky Ducky?

Sticky Ducky è un'estensione di Chrome sviluppata da Boris Lykah, e la sua funzione principale è "Automatically cleans pages of the sticky headers and other fixed elements".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Sticky Ducky

Scarica i file di estensione Sticky Ducky 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
URL Ufficiale https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Descrizione Automatically cleans pages of the sticky headers and other fixed elements
Dimensione del File 58.24 KB
Conteggio Installazioni 377
Versione Corrente 1.7.2
Ultimo Aggiornamento 2022-01-30
Data di Pubblicazione 2020-03-11
Valutazione 4.27/5 Totale 11 Valutazioni
Sviluppatore Boris Lykah
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lykahb/sticky-ducky
Lingue Supportate 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"
        }
    ]
}