Chrome Wheel

Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.

什麼是Chrome Wheel?

Chrome Wheel是由http://samskivert.com開發的Chrome擴展程式,該擴展的主要功能是“Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.”。

下載Chrome Wheel擴展crx文件

下載Chrome Wheel擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Back in the good old days, ctrl-mousewheel or alt-mousewheel scrolled the page in large (full page) increments. That was actually useful. Then someone had the genius idea of making that scale the page up or down. Not so useful in my humble opinion, so this plugin restores the "scroll faster" behavior.                    

擴展基本資訊

名稱 Chrome Wheel Chrome Wheel
ID ceooplgmfmmjjbmnmhnpnmkikmmcikbn
官方網址 https://chrome.google.com/webstore/detail/chrome-wheel/ceooplgmfmmjjbmnmhnpnmkikmmcikbn
簡介 Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.
檔案大小 3.52 KB
安裝次數 19
目前版本 1.0.1
更新時間 2016-12-02
上架時間 2016-12-02
評分 3.00/5 共 3 次評分
開發者 http://samskivert.com
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Wheel",
    "version": "1.0.1",
    "description": "Makes alt\/shift\/ctrl-scrollwheel scroll in large increments instead of default behavior.",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "chromewheel.js"
            ],
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}