Middle Click Scroll

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

What is Middle Click Scroll?

Middle Click Scroll is a Chrome extension developed by alarv, and its main feature is "Clicking the middle click/wheel now takes you to the top of the page".

Download Middle Click Scroll Extension CRX File

Download Middle Click Scroll extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
Official URL https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Description Clicking the middle click/wheel now takes you to the top of the page
File Size 15.16 KB
Installation Count 195
Current Version 1.0
Last Updated 2016-06-07
Publish Date 2016-06-07
Rating 2.29/5 Total 7 Ratings
Developer alarv
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}