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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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": [ "*.*" ] } |