Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

什麼是Sticky Ducky?

Sticky Ducky是由Boris Lykah開發的Chrome擴展程式,該擴展的主要功能是“Automatically cleans pages of the sticky headers and other fixed elements”。

擴展截圖

screenshot
screenshot
screenshot

下載Sticky Ducky擴展crx文件

下載Sticky Ducky擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
官方網址 https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
簡介 Automatically cleans pages of the sticky headers and other fixed elements
檔案大小 58.24 KB
安裝次數 377
目前版本 1.7.2
更新時間 2022-01-30
上架時間 2020-03-11
評分 4.27/5 共 11 次評分
開發者 Boris Lykah
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/lykahb/sticky-ducky
支援的語言 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"
        }
    ]
}