Scrollbar Anywhere

Click and drag anywhere to scroll the page.

什么是Scrollbar Anywhere?

Scrollbar Anywhere是由David Pärsson开发的Chrome扩展程序,该扩展的主要功能是“Click and drag anywhere to scroll the page.”。

扩展截图

screenshot
screenshot

下载Scrollbar Anywhere扩展crx文件

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

扩展使用说明

                        This extension makes it possible to to scroll pages as if the scrollbar was right under your pointer. Just press the right mouse button (or any other of your choice) and move the mouse.

If you want grab-and-drag style scrolling, just set it up in the options.

The extension is based on the Wet Banana extension and inspired by Scrollbar Anywhere for Firefox.

Changes in 2.16:
- Stop gliding when a key is pressed or the mouse wheel is scrolled.
- Fix a bug where the default mouse click actions were incorrectly prevented.

Changes in 2.15:
- Blacklist bug fix for file URLs.

Changes in 2.14, 2.13 and 2.12:
- Support for Chrome v60+.

Changes in 2.11:
- Add a blacklist, allowing users to disable scrolling on certain domains.

Changes in 2.10:
- Fixed a bug where settings in open tabs were not updated.                    

扩展基本信息

名称 Scrollbar Anywhere Scrollbar Anywhere
ID namcaplenodjnggbfkbopdbfngponici
官方URL https://chromewebstore.google.com/detail/scrollbar-anywhere/namcaplenodjnggbfkbopdbfngponici
简介 Click and drag anywhere to scroll the page.
文件大小 19.87 KB
安装次数 15,351
当前版本 2.17
更新时间 2019-08-03
上架时间 2019-08-03
评分 4.30/5 共291次评分
开发者 David Pärsson
电子邮箱 [email protected]
付费类型 free
扩展官网 http://github.com/davidparsson/scrollbar-anywhere
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scrollbar Anywhere",
    "version": "2.17",
    "description": "Click and drag anywhere to scroll the page.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "32": "icon32.png",
        "16": "icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Click to toggle Scrollbar Anywhere"
    },
    "options_page": "options.html",
    "manifest_version": 2,
    "minimum_chrome_version": "49"
}