Sticky Header Hider aka Fixed Header Fixer

Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…

Sticky Header Hider aka Fixed Header Fixerคืออะไร?

Sticky Header Hider aka Fixed Header Fixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://emojistuff.com และคุณลักษณะหลักของมันคือ "Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sticky Header Hider aka Fixed Header Fixer

ดาวน์โหลดไฟล์ส่วนขยาย Sticky Header Hider aka Fixed Header Fixer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while you scroll down the page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Sticky Header Hider aka Fixed Header Fixer Sticky Header Hider aka Fixed Header Fixer
ID eagncneohcoiofhknkofdobphnhgblad
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/sticky-header-hider-aka-f/eagncneohcoiofhknkofdobphnhgblad
คำอธิบาย Makes it easier to read articles by hiding sticky elements of webpages, so they don't follow you and waste your screen space while…
ขนาดไฟล์ 79.52 KB
จำนวนการติดตั้ง 292
เวอร์ชันปัจจุบัน 0.1.01
อัปเดตครั้งล่าสุด 2020-10-02
วันที่เผยแพร่ 2017-12-16
คะแนน 4.06/5 รวมทั้งหมด 17 คะแนน
ผู้พัฒนา https://emojistuff.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.emojistuff.com
URL หน้านโยบายความเป็นส่วนตัว https://www.growbotforfollowers.com/privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "",
    "default_locale": "en",
    "version": "0.1.01",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "options.html"
    },
    "background": {
        "scripts": [
            "backgroundscript.js",
            "hot-reload.js"
        ]
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage",
        "https:\/\/www.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "*.*"
    ]
}