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.
扩展基本信息
名称 | Scroll Buddy |
ID | iijemcphocnlembodanflickfiafjnmk |
官方URL | 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" ] } |