Webpage Auto Scrolldown
Automatically keeps you at the bottom of a page when clicked.
Webpage Auto Scrolldown란 무엇입니까?
Webpage Auto Scrolldown은(는) CommanderCactus에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically keeps you at the bottom of a page when clicked."입니다.
확장 프로그램 스크린샷
Webpage Auto Scrolldown 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Literally scrolls to the bottom of the page. That's it. Click it once to activate it, click it again to deactivate. Probably a lot of bugs. Go forth and be productive, I guess.
확장 프로그램 기본 정보
이름 | |
ID | aegbbdpcnbnddiipcggakoglcmlgejem |
공식 URL | https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem |
설명 | Automatically keeps you at the bottom of a page when clicked. |
파일 크기 | 14.53 KB |
설치 횟수 | 3,000 |
현재 버전 | 1.0 |
최근 업데이트 | 2016-03-13 |
출시 날짜 | 2016-03-13 |
평점 | 4.15/5 총 20 개의 평점 |
개발자 | CommanderCactus |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Webpage Auto Scrolldown", "description": "Automatically keeps you at the bottom of a page when clicked.", "version": "1.0", "short_name": "Auto Scroller", "icons": { "16": "ico16.png", "48": "ico48.png", "128": "ico128.png" }, "background": { "scripts": [ "bgcomm.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "alarms" ], "browser_action": { "default_title": "KICK IT INTO OVERDRIIIIIIVE" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "autoscroll.js" ], "run_at": "document_end" } ] } |