Scroll Speed

Change the scroll speed

Scroll Speed là gì?

Scroll Speed là một tiện ích mở rộng Chrome được phát triển bởi Bert Hekman, và tính năng chính của nó là "Change the scroll speed".

Ả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 Scroll Speed

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

                        Change the scrolling speed of the mouse wheel                    

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

Tên Scroll Speed Scroll Speed
ID mfmhdfkinffhnfhaalnabffcfjgcmdhl
URL Chính Thức https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl
Mô tả Change the scroll speed
Kích Thước Tệp 10.95 KB
Số Lần Cài Đặt 3,683
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-04-27
Ngày Phát Hành 2020-04-23
Đánh Giá 4.28/5 Tổng số 29 Đánh Giá
Nhà Phát Triển Bert Hekman
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DemonTPx/chrome-scroll-speed
URL Trang Trợ Giúp https://github.com/DemonTPx/chrome-scroll-speed/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Speed",
    "version": "0.1",
    "description": "Change the scroll speed",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "exclude_globs": [
                "*.pdf"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}