Scroll-Anywhere

Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.

什么是Scroll-Anywhere?

Scroll-Anywhere是由em_te开发的Chrome扩展程序,该扩展的主要功能是“Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.”。

扩展截图

screenshot
screenshot

下载Scroll-Anywhere扩展crx文件

下载Scroll-Anywhere扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Allows you to scroll the webpage no matter where the pointer is, as if the pointer was currently over the scrollbar.

Simply hold down the middle button anywhere on the webpage and move the mouse in any direction.

You can also go into the extension's settings page and change the direction of the scroll so that it behaves like touch devices.

As an optimization, if you hold down the middle button, move the mouse a little and then very quickly release the button, you can continue to scroll the webpage without needing to keep the mouse button pressed.

This extension is open source: https://github.com/em-te/webextension-scrollbar-anywhere

Caveat: This extension cannot work on the Extensions Gallery (this website).                    

扩展基本信息

名称 Scroll-Anywhere Scroll-Anywhere
ID efdjjpechpdfmdnpamdppjahcemapgbn
官方URL https://chromewebstore.google.com/detail/scroll-anywhere/efdjjpechpdfmdnpamdppjahcemapgbn
简介 Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.
文件大小 10.71 KB
安装次数 21
当前版本 0.1.3
更新时间 2022-04-12
上架时间 2022-03-30
评分 3.00/5 共2次评分
开发者 em_te
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/em-te/webextension-scrollbar-anywhere
隐私政策页面URL https://em-te.github.io/privacy
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "author": "Terry",
    "version": "0.1.3",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "48": "icon_48.png",
        "96": "icon_96.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.htm"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}