Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
Auto Scroll Extension란 무엇입니까?
Auto Scroll Extension은(는) https://071yoon.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto Scroller for Chrome to help user scroll automatically"입니다.
확장 프로그램 스크린샷
Auto Scroll Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Auto Scroller for Chrome for automation This Extension helps user to use scroller as automation form. for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! And in addition, extension remembers your last option for scrolling, and will remain as that option.
확장 프로그램 기본 정보
이름 | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
공식 URL | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
설명 | Auto Scroller for Chrome to help user scroll automatically |
파일 크기 | 84.15 KB |
설치 횟수 | 383 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2023-09-05 |
출시 날짜 | 2023-09-04 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://071yoon.github.io |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Scroll Extension", "description": "Auto Scroller for Chrome to help user scroll automatically", "manifest_version": 3, "version": "1.0.2", "permissions": [ "activeTab", "scripting", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |