Auto Scroll

Automatically scroll down on your current web page

Auto Scroll là gì?

Auto Scroll là một tiện ích mở rộng Chrome được phát triển bởi PracticalApplications, và tính năng chính của nó là "Automatically scroll down on your current web page".

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

screenshot
screenshot

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

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

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

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

Tên Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
URL Chính Thức https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
Mô tả Automatically scroll down on your current web page
Kích Thước Tệp 44.83 KB
Số Lần Cài Đặt 460
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-02-20
Ngày Phát Hành 2018-02-20
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển PracticalApplications
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}