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.

Wat is Scroll-Anywhere?

Scroll-Anywhere is een Chrome-extensie ontwikkeld door em_te, en de belangrijkste functie is "Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Scroll-Anywhere

Download Scroll-Anywhere-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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).                    

Basisinformatie over de Extensie

Naam Scroll-Anywhere Scroll-Anywhere
ID efdjjpechpdfmdnpamdppjahcemapgbn
Officiële URL https://chromewebstore.google.com/detail/scroll-anywhere/efdjjpechpdfmdnpamdppjahcemapgbn
Beschrijving Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.
Bestandsgrootte 10.71 KB
Aantal Installaties 21
Huidige Versie 0.1.3
Laatst Bijgewerkt 2022-04-12
Publicatiedatum 2022-03-30
Beoordeling 3.00/5 Totaal 2 Beoordelingen
Ontwikkelaar em_te
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/em-te/webextension-scrollbar-anywhere
URL van de Privacybeleid Pagina https://em-te.github.io/privacy
Ondersteunde Talen 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"
        }
    ]
}