Scroll Buddy
This extension allows you to automate page scrolling
什麼是Scroll Buddy?
Scroll Buddy是由otoinsa開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to automate page scrolling”。
擴展截圖
下載Scroll Buddy擴展crx文件
下載Scroll Buddy擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Reading a book online or just tired of scrolling?
The usual auto-scroll plugins just ain't cutting it?
Scroll Buddy is here for you.
Control how many pixels to scroll with each line scrolled
Control the timeframe for scroll motion using milliseconds ( 1000 miliseconds = 1 second)
Right click menu to start/stop scrolling for convenience
Simple, elegant interface
Also the browser toolbar popup closes and starts scrolling when you hit the enter key regardless of focused element. 擴展基本資訊
| 名稱 | |
| ID | iijemcphocnlembodanflickfiafjnmk |
| 官方網址 | https://chromewebstore.google.com/detail/scroll-buddy/iijemcphocnlembodanflickfiafjnmk |
| 簡介 | This extension allows you to automate page scrolling |
| 檔案大小 | 1.85 MB |
| 安裝次數 | 1,058 |
| 目前版本 | 1.1 |
| 更新時間 | 2023-12-29 |
| 上架時間 | 2017-10-30 |
| 評分 | 4.94/5 共 18 次評分 |
| 開發者 | otoinsa |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | http://digital-ninja.xyz |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"offline_enabled": true,
"name": "Scroll Buddy",
"description": "This extension allows you to automate page scrolling",
"version": "1.1",
"browser_action": {
"default_popup": "popup.html"
},
"background": {
"persistent": false,
"scripts": [
"background.js",
"contextMenus.js"
]
},
"permissions": [
"notifications",
"storage",
"contextMenus",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "icon\/icon16.png",
"32": "icon\/icon32.png",
"48": "icon\/icon48.png",
"64": "icon\/icon64.png",
"128": "icon\/icon128.png"
},
"web_accessible_resources": [
"icon\/icon48.png",
"missing-values.png"
]
} | |