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
Eメール [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"
}