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
官方URL 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"
        }
    ]
}