Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Vad är Sticky Ducky?

Sticky Ducky är en Chrome-tillägg utvecklad av Boris Lykah, och dess huvudfunktion är "Automatically cleans pages of the sticky headers and other fixed elements".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Sticky Ducky-förlängningens CRX-fil

Ladda ner Sticky Ducky-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
Officiell webbadress https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Beskrivning Automatically cleans pages of the sticky headers and other fixed elements
Filstorlek 58.24 KB
Antal Installationer 377
Aktuell Version 1.7.2
Senast Uppdaterad 2022-01-30
Publiceringsdatum 2020-03-11
Betyg 4.27/5 Totalt 11 Betyg
Utvecklare Boris Lykah
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/lykahb/sticky-ducky
Stödda Språk 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"
        }
    ]
}