Simple Auto Scroll

Simple speed-customizable auto scroll

Simple Auto Scroll là gì?

Simple Auto Scroll là một tiện ích mở rộng Chrome được phát triển bởi xjpablobrx, và tính năng chính của nó là "Simple speed-customizable auto scroll".

Ả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 Simple Auto Scroll

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

                        1. What is it?

A speed-customizable auto-scroll Google Chrome extension.

2. Why?

A lot of times I find myself reading long texfiles, and after a while, I kind of wish I could just read them as if they were a movie. I've tried with the mouse (middle click) thingy, but it's just not practical and adjusting the speed is very tricky - not to mention that a lot of times it's just too fast.

3. Features

This extension allows you to easily change the auto-scroll speed and save it in three different modes; slow, medium and fast. A single click will stop the auto-scrolling.

Note: Does not work in Google related websites.                    

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

Tên Simple Auto Scroll Simple Auto Scroll
ID dccjkemhmffnljlnnoffljpkhkfpldff
URL Chính Thức https://chrome.google.com/webstore/detail/simple-auto-scroll/dccjkemhmffnljlnnoffljpkhkfpldff
Mô tả Simple speed-customizable auto scroll
Kích Thước Tệp 12.31 KB
Số Lần Cài Đặt 40,000
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2018-12-17
Ngày Phát Hành 2018-12-17
Đánh Giá 4.04/5 Tổng số 214 Đánh Giá
Nhà Phát Triển xjpablobrx
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jpablobr/simple-auto-scroll
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Auto Scroll",
    "version": "0.1.4",
    "description": "Simple speed-customizable auto scroll",
    "icons": {
        "48": "icons\/autoscroll.png",
        "128": "icons\/autoscroll.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "",
        "default_icon": "icons\/autoscroll.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/simple_autoscroll.js"
            ],
            "run_at": "document_start"
        }
    ]
}