Scroll Speed

Change the scroll speed

什麼是Scroll Speed?

Scroll Speed是由Bert Hekman開發的Chrome擴展程式,該擴展的主要功能是“Change the scroll speed”。

擴展截圖

screenshot

下載Scroll Speed擴展crx文件

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

擴展使用說明

                        Change the scrolling speed of the mouse wheel                    

擴展基本資訊

名稱 Scroll Speed Scroll Speed
ID mfmhdfkinffhnfhaalnabffcfjgcmdhl
官方網址 https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl
簡介 Change the scroll speed
檔案大小 10.95 KB
安裝次數 3,683
目前版本 0.1
更新時間 2020-04-27
上架時間 2020-04-23
評分 4.28/5 共 29 次評分
開發者 Bert Hekman
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/DemonTPx/chrome-scroll-speed
說明頁面URL https://github.com/DemonTPx/chrome-scroll-speed/issues
支援的語言 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
}