Auto Scroll Extension

Auto Scroller for Chrome to help user scroll automatically

Auto Scroll Extension là gì?

Auto Scroll Extension là một tiện ích mở rộng Chrome được phát triển bởi https://071yoon.github.io, và tính năng chính của nó là "Auto Scroller for Chrome to help user scroll automatically".

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

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

                        Auto Scroller for Chrome for automation
This Extension helps user to use scroller as automation form.
for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! 
And in addition, extension remembers your last option for scrolling, and will remain as that option.                    

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

Tên Auto Scroll Extension Auto Scroll Extension
ID ppkbgpllhklbjlmmncjjgogcdphkaaho
URL Chính Thức https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho
Mô tả Auto Scroller for Chrome to help user scroll automatically
Kích Thước Tệp 84.15 KB
Số Lần Cài Đặt 383
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-09-05
Ngày Phát Hành 2023-09-04
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://071yoon.github.io
Email [email protected]
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 Extension",
    "description": "Auto Scroller for Chrome to help user scroll automatically",
    "manifest_version": 3,
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}