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…”。
扩展截图
下载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 |
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": [ "*.*" ] } |