Webpage Auto Scrolldown
Automatically keeps you at the bottom of a page when clicked.
Webpage Auto Scrolldown là gì?
Webpage Auto Scrolldown là một tiện ích mở rộng Chrome được phát triển bởi CommanderCactus, và tính năng chính của nó là "Automatically keeps you at the bottom of a page when clicked.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Webpage Auto Scrolldown
Tải xuống các tệp mở rộng Webpage Auto Scrolldown dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | aegbbdpcnbnddiipcggakoglcmlgejem |
URL Chính Thức | https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem |
Mô tả | Automatically keeps you at the bottom of a page when clicked. |
Kích Thước Tệp | 14.53 KB |
Số Lần Cài Đặt | 3,000 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-03-13 |
Ngày Phát Hành | 2016-03-13 |
Đánh Giá | 4.15/5 Tổng số 20 Đánh Giá |
Nhà Phát Triển | CommanderCactus |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |