Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Was ist Sticky Ducky?

Sticky Ducky ist eine Chrome-Erweiterung, die von Boris Lykah entwickelt wurde, und ihr Hauptmerkmal ist "Automatically cleans pages of the sticky headers and other fixed elements".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Sticky Ducky-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sticky Ducky-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
Offizielle URL https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Beschreibung Automatically cleans pages of the sticky headers and other fixed elements
Dateigröße 58.24 KB
Installationsanzahl 377
Aktuelle Version 1.7.2
Letztes Update 2022-01-30
Veröffentlichungsdatum 2020-03-11
Bewertung 4.27/5 Insgesamt 11 Bewertungen
Entwickler Boris Lykah
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/lykahb/sticky-ducky
Unterstützte Sprachen 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"
        }
    ]
}