Sticky Ducky

Automatically cleans pages of the sticky headers and other fixed elements

Sticky Duckyคืออะไร?

Sticky Ducky เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Boris Lykah และคุณลักษณะหลักของมันคือ "Automatically cleans pages of the sticky headers and other fixed elements"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sticky Ducky

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}