Auto Scroll
Easily scroll to the top and the bottom of current page
Auto Scroll란 무엇입니까?
Auto Scroll은(는) Gareth Ng에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily scroll to the top and the bottom of current page"입니다.
확장 프로그램 스크린샷
Auto Scroll 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple tool for users, you can use this extension to auto scroll to the top or the bottom of current website. By adding a small button on the page, users can easily click and reach the top of the webpage, without scrolling. Users can also hide the button in the popup. Enjoy your long page surfing! Open source: https://github.com/garethng/GoToTop
확장 프로그램 기본 정보
이름 | Auto Scroll |
ID | cmbpfcapjacpbmehmemljdilabjnlfhb |
공식 URL | https://chromewebstore.google.com/detail/auto-scroll/cmbpfcapjacpbmehmemljdilabjnlfhb |
설명 | Easily scroll to the top and the bottom of current page |
파일 크기 | 63.8 KB |
설치 횟수 | 403 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2022-09-30 |
출시 날짜 | 2021-12-30 |
평점 | 3.80/5 총 5 개의 평점 |
개발자 | Gareth Ng |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/garethng/GoToTop |
지원되는 언어 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "version": "1.2.0", "icons": { "48": "images\/icon-48.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "jQuery.js", "content.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/toolbar-icon-16.png", "19": "images\/toolbar-icon-19.png", "32": "images\/toolbar-icon-32.png", "38": "images\/toolbar-icon-38.png" } }, "permissions": [ "contextMenus", "storage" ] } |