Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Wat is Sticky Ducky?

Sticky Ducky is een Chrome-extensie ontwikkeld door Boris Lykah, en de belangrijkste functie is "Automatically cleans pages of the sticky headers and other fixed elements".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Sticky Ducky

Download Sticky Ducky-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
Officiële URL https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Beschrijving Automatically cleans pages of the sticky headers and other fixed elements
Bestandsgrootte 58.24 KB
Aantal Installaties 377
Huidige Versie 1.7.2
Laatst Bijgewerkt 2022-01-30
Publicatiedatum 2020-03-11
Beoordeling 4.27/5 Totaal 11 Beoordelingen
Ontwikkelaar Boris Lykah
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/lykahb/sticky-ducky
Ondersteunde Talen 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"
        }
    ]
}