Autoscroll

Use Ctrl+Up/Down arrows to make pages scroll continously.

Autoscroll là gì?

Autoscroll là một tiện ích mở rộng Chrome được phát triển bởi https://mrogalski.eu, và tính năng chính của nó là "Use Ctrl+Up/Down arrows to make pages scroll continously.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Autoscroll

Tải xuống các tệp mở rộng Autoscroll 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

                        Scroller is an extension that automatically scrolls webpages. Use Ctrl + arrows to adjust scrolling speed or set default values using icon on the top bar.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Autoscroll Autoscroll
ID cokfegjeoaflhjkloplfpjgnmlhbfkhp
URL Chính Thức https://chromewebstore.google.com/detail/autoscroll/cokfegjeoaflhjkloplfpjgnmlhbfkhp
Mô tả Use Ctrl+Up/Down arrows to make pages scroll continously.
Kích Thước Tệp 22.91 KB
Số Lần Cài Đặt 2,108
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2013-04-27
Ngày Phát Hành 2013-04-27
Đánh Giá 3.64/5 Tổng số 33 Đánh Giá
Nhà Phát Triển https://mrogalski.eu
Loại Thanh Toán free
Trang Web Mở Rộng http://mrogalski.eu/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Use Ctrl+Up\/Down arrows to make pages scroll continously."
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Use Ctrl+Up\/Down arrows to make pages scroll continously.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Autoscroll",
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scroller.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.2"
}