Scrollbar Anywhere

Click and drag anywhere to scroll the page.

Was ist Scrollbar Anywhere?

Scrollbar Anywhere ist eine Chrome-Erweiterung, die von David Pärsson entwickelt wurde, und ihr Hauptmerkmal ist "Click and drag anywhere to scroll the page.".

Erweiterungsscreenshots

screenshot
screenshot

Scrollbar Anywhere-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scrollbar Anywhere-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Scrollbar Anywhere Scrollbar Anywhere
ID namcaplenodjnggbfkbopdbfngponici
Offizielle URL https://chromewebstore.google.com/detail/scrollbar-anywhere/namcaplenodjnggbfkbopdbfngponici
Beschreibung Click and drag anywhere to scroll the page.
Dateigröße 19.87 KB
Installationsanzahl 15,351
Aktuelle Version 2.17
Letztes Update 2019-08-03
Veröffentlichungsdatum 2019-08-03
Bewertung 4.30/5 Insgesamt 291 Bewertungen
Entwickler David Pärsson
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://github.com/davidparsson/scrollbar-anywhere
Unterstützte Sprachen 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"
}