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
Eメール [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"
        }
    ]
}