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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}