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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |