Scroll Buddy
This extension allows you to automate page scrolling
Was ist Scroll Buddy?
Scroll Buddy ist eine Chrome-Erweiterung, die von otoinsa entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to automate page scrolling".
Erweiterungsscreenshots
Scroll Buddy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Scroll Buddy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iijemcphocnlembodanflickfiafjnmk |
| Offizielle URL | https://chromewebstore.google.com/detail/scroll-buddy/iijemcphocnlembodanflickfiafjnmk |
| Beschreibung | This extension allows you to automate page scrolling |
| Dateigröße | 1.85 MB |
| Installationsanzahl | 1,058 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2023-12-29 |
| Veröffentlichungsdatum | 2017-10-30 |
| Bewertung | 4.94/5 Insgesamt 18 Bewertungen |
| Entwickler | otoinsa |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://digital-ninja.xyz |
| Unterstützte Sprachen | 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"
]
} | |