Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

What is Sticky Ducky?

Sticky Ducky is a Chrome extension developed by Boris Lykah, and its main feature is "Automatically cleans pages of the sticky headers and other fixed elements".

Extension Screenshots

screenshot
screenshot
screenshot

Download Sticky Ducky Extension CRX File

Download Sticky Ducky extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
Official URL https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Description Automatically cleans pages of the sticky headers and other fixed elements
File Size 58.24 KB
Installation Count 377
Current Version 1.7.2
Last Updated 2022-01-30
Publish Date 2020-03-11
Rating 4.27/5 Total 11 Ratings
Developer Boris Lykah
Email [email protected]
Payment Type free
Extension Website https://github.com/lykahb/sticky-ducky
Supported Languages 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"
        }
    ]
}