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.

Cos'è Scroll-Anywhere?

Scroll-Anywhere è un'estensione di Chrome sviluppata da em_te, e la sua funzione principale è "Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Scroll-Anywhere

Scarica i file di estensione Scroll-Anywhere in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Scroll-Anywhere Scroll-Anywhere
ID efdjjpechpdfmdnpamdppjahcemapgbn
URL Ufficiale https://chromewebstore.google.com/detail/scroll-anywhere/efdjjpechpdfmdnpamdppjahcemapgbn
Descrizione Scroll the webpage as if the scrollbar is right under your pointer by holding down the middle mouse button anywhere on the webpage.
Dimensione del File 10.71 KB
Conteggio Installazioni 21
Versione Corrente 0.1.3
Ultimo Aggiornamento 2022-04-12
Data di Pubblicazione 2022-03-30
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore em_te
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/em-te/webextension-scrollbar-anywhere
URL della Pagina della Politica sulla Privacy https://em-te.github.io/privacy
Lingue Supportate 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"
        }
    ]
}