Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Sticky Ducky là gì?

Sticky Ducky là một tiện ích mở rộng Chrome được phát triển bởi Boris Lykah, và tính năng chính của nó là "Automatically cleans pages of the sticky headers and other fixed elements".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sticky Ducky

Tải xuống các tệp mở rộng Sticky Ducky dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sticky Ducky Sticky Ducky
ID gklhneccajklhledmencldobkjjpnhkd
URL Chính Thức https://chromewebstore.google.com/detail/sticky-ducky/gklhneccajklhledmencldobkjjpnhkd
Mô tả Automatically cleans pages of the sticky headers and other fixed elements
Kích Thước Tệp 58.24 KB
Số Lần Cài Đặt 377
Phiên Bản Hiện Tại 1.7.2
Cập Nhật Lần Cuối 2022-01-30
Ngày Phát Hành 2020-03-11
Đánh Giá 4.27/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Boris Lykah
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lykahb/sticky-ducky
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}