Scroll Buddy

This extension allows you to automate page scrolling

Cos'è Scroll Buddy?

Scroll Buddy è un'estensione di Chrome sviluppata da otoinsa, e la sua funzione principale è "This extension allows you to automate page scrolling".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Scroll Buddy

Scarica i file di estensione Scroll Buddy 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

                        Reading a book online or just tired of scrolling?
The usual auto-scroll plugins just ain't cutting it?

Scroll Buddy is here for you.



Control how many pixels to scroll with each line scrolled

Control the timeframe for scroll motion using milliseconds ( 1000 miliseconds = 1 second)

Right click menu to start/stop scrolling for convenience

Simple, elegant interface


Also the browser toolbar popup closes and starts scrolling when you hit the enter key regardless of focused element.                    

Informazioni di Base sull'Estensione

Nome Scroll Buddy Scroll Buddy
ID iijemcphocnlembodanflickfiafjnmk
URL Ufficiale https://chromewebstore.google.com/detail/scroll-buddy/iijemcphocnlembodanflickfiafjnmk
Descrizione This extension allows you to automate page scrolling
Dimensione del File 1.85 MB
Conteggio Installazioni 1,058
Versione Corrente 1.1
Ultimo Aggiornamento 2023-12-29
Data di Pubblicazione 2017-10-30
Valutazione 4.94/5 Totale 18 Valutazioni
Sviluppatore otoinsa
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://digital-ninja.xyz
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "offline_enabled": true,
    "name": "Scroll Buddy",
    "description": "This extension allows you to automate page scrolling",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js",
            "contextMenus.js"
        ]
    },
    "permissions": [
        "notifications",
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    },
    "web_accessible_resources": [
        "icon\/icon48.png",
        "missing-values.png"
    ]
}