Middle Click Scroll

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

Middle Click Scrollとは何ですか?

Middle Click Scrollはalarvによって開発されたChromeの拡張機能で、その主な機能は「Clicking the middle click/wheel now takes you to the top of the page」です。

Middle Click Scroll拡張機能のCRXファイルをダウンロード

Middle Click Scroll拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
公式URL https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
説明 Clicking the middle click/wheel now takes you to the top of the page
ファイルサイズ 15.16 KB
インストール数 195
現在のバージョン 1.0
最終更新日 2016-06-07
公開日 2016-06-07
評価 2.29/5 合計 7 レビュー
開発者 alarv
Eメール [email protected]
支払い方法 free
対応言語 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"
        }
    ]
}