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 |
| 公式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 |
| Eメール | [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"
]
} | |