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文件
下載Invisible scrollbar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | nphnhlhdlbonnekhjlmphinfnmekiifk |
| 官方網址 | 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"
]
} | |