Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Qu'est-ce que Sticky Ducky ?

Sticky Ducky est une extension Chrome développée par Boris Lykah, et sa fonction principale est "Automatically cleans pages of the sticky headers and other fixed elements".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Sticky Ducky

Téléchargez les fichiers d'extension Sticky Ducky au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
URL Officiel https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Description Automatically cleans pages of the sticky headers and other fixed elements
Taille du Fichier 58.24 KB
Nombre d'Installations 377
Version Actuelle 1.7.2
Dernière Mise à Jour 2022-01-30
Date de Publication 2020-03-11
Évaluation 4.27/5 Total 11 Évaluations
Développeur Boris Lykah
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lykahb/sticky-ducky
Langues Prises en Charge 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"
        }
    ]
}