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.

¿Qué es Scroll-Anywhere?

Scroll-Anywhere es una extensión de Chrome desarrollada por em_te, y su función principal es "Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Scroll-Anywhere

Descarga archivos de extensión Scroll-Anywhere en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Scroll-Anywhere Scroll-Anywhere
ID efdjjpechpdfmdnpamdppjahcemapgbn
URL Oficial https://chromewebstore.google.com/detail/scroll-anywhere/efdjjpechpdfmdnpamdppjahcemapgbn
Descripción Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.
Tamaño del Archivo 10.71 KB
Cantidad de Instalaciones 21
Versión Actual 0.1.3
Última Actualización 2022-04-12
Fecha de Publicación 2022-03-30
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador em_te
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/em-te/webextension-scrollbar-anywhere
URL de la Página de Política de Privacidad https://em-te.github.io/privacy
Idiomas Soportados 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"
        }
    ]
}