Invisible scrollbar
Re-realize scrollbar, simple design and floating display
Invisible scrollbar란 무엇입니까?
Invisible scrollbar은(는) KK YUAN에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Re-realize scrollbar, simple design and floating display"입니다.
확장 프로그램 스크린샷
Invisible scrollbar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an extension to hide the scroll bar of the webpage. After hiding, the function will be realized in other ways: Click on the far right side of the webpage to quickly scroll to the top or bottom. Click on the leftmost page to quickly turn the page. Double-click can also mark the current browsing position and automatically generate a directory. Click to reach the content area, or press Ctrl to switch.
확장 프로그램 기본 정보
이름 | Invisible scrollbar |
ID | nphnhlhdlbonnekhjlmphinfnmekiifk |
공식 URL | https://chromewebstore.google.com/detail/invisible-scrollbar/nphnhlhdlbonnekhjlmphinfnmekiifk |
설명 | Re-realize scrollbar, simple design and floating display |
파일 크기 | 1.24 MB |
설치 횟수 | 3,000 |
현재 버전 | 1.4.3 |
최근 업데이트 | 2023-11-20 |
출시 날짜 | 2020-07-03 |
평점 | 4.49/5 총 41 개의 평점 |
개발자 | KK YUAN |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | http://aa-zz.cn/apps/privacy_policy.html |
지원되는 언어 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "default_locale": "en", "version": "1.4.3", "description": "__MSG_appDescription__", "icons": { "16": "icons\/icon5_no_16.png", "48": "icons\/icon5_no_48.png", "128": "icons\/icon5_no.png" }, "action": { "default_icon": { "19": "icons\/icon5_no_19.png", "38": "icons\/icon5_no_38.png" }, "default_title": "__MSG_appName__", "default_popup": "pages\/popup.html" }, "background": { "service_worker": "core\/background.js", "type": "module" }, "content_scripts": [ { "all_frames": true, "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "pages\/background.css" ], "js": [ "pages\/jquery-min.js", "pages\/base64.js", "core\/content_script.js" ] } ], "web_accessible_resources": [ { "resources": [ "img\/*.png", "pages\/reading_model.html", "pages\/scroll_bar.html" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "contextMenus", "storage", "unlimitedStorage", "notifications" ], "host_permissions": [ "*:\/\/aa-zz.cn\/*" ], "optional_permissions": [ "tabs" ] } |