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是由https://emojistuff.com開發的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…”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Sticky Header Hider aka Fixed Header Fixer擴展crx文件

下載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
官方網址 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": [
        "*.*"
    ]
}