Middle Click Scroll

Clicking the middle click/wheel now takes you to the top of the page

Middle Click Scroll là gì?

Middle Click Scroll là một tiện ích mở rộng Chrome được phát triển bởi alarv, và tính năng chính của nó là "Clicking the middle click/wheel now takes you to the top of the page".

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

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

                        Give life to your mouse wheel click! By clicking the mouse wheel or the middle mouse click, you can now scroll to the top of the page or to the bottom! If you want to cancel your action, don't worry! 1 second after you keep the mouse wheel clicked, the event is cancelled, to avoid unwanted scrolls. Enjoy scrolling!                    

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

Tên Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
URL Chính Thức https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Mô tả Clicking the middle click/wheel now takes you to the top of the page
Kích Thước Tệp 15.16 KB
Số Lần Cài Đặt 195
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-06-07
Ngày Phát Hành 2016-06-07
Đánh Giá 2.29/5 Tổng số 7 Đánh Giá
Nhà Phát Triển alarv
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",
    "manifest_version": 2,
    "name": "Middle Click Scroll",
    "version": "1.0",
    "description": "Clicking the middle click\/wheel now takes you to the top of the page",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Alex",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}