Auto Scroll

Easily scroll to the top and the bottom of current page

Auto Scroll là gì?

Auto Scroll là một tiện ích mở rộng Chrome được phát triển bởi Gareth Ng, và tính năng chính của nó là "Easily scroll to the top and the bottom of current 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

                        A simple tool for users, you can use this extension to auto scroll to the top or the bottom of current website.

By adding a small button on the page, users can easily click and reach the top of the webpage, without scrolling.

Users can also hide the button in the popup.

Enjoy your long page surfing!

Open source: https://github.com/garethng/GoToTop                    

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

Tên Auto Scroll Auto Scroll
ID cmbpfcapjacpbmehmemljdilabjnlfhb
URL Chính Thức https://chromewebstore.google.com/detail/auto-scroll/cmbpfcapjacpbmehmemljdilabjnlfhb
Mô tả Easily scroll to the top and the bottom of current page
Kích Thước Tệp 63.8 KB
Số Lần Cài Đặt 403
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2022-09-30
Ngày Phát Hành 2021-12-30
Đánh Giá 3.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Gareth Ng
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/garethng/GoToTop
Ngôn Ngữ Được Hỗ Trợ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.2.0",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "jQuery.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "19": "images\/toolbar-icon-19.png",
            "32": "images\/toolbar-icon-32.png",
            "38": "images\/toolbar-icon-38.png"
        }
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}