Auto Scroll

Automatically scroll down on your current web page

Cos'è Auto Scroll?

Auto Scroll è un'estensione di Chrome sviluppata da PracticalApplications, e la sua funzione principale è "Automatically scroll down on your current web page".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Auto Scroll

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

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

Informazioni di Base sull'Estensione

Nome Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
URL Ufficiale https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
Descrizione Automatically scroll down on your current web page
Dimensione del File 44.83 KB
Conteggio Installazioni 460
Versione Corrente 1.0
Ultimo Aggiornamento 2018-02-20
Data di Pubblicazione 2018-02-20
Valutazione 3.75/5 Totale 4 Valutazioni
Sviluppatore PracticalApplications
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}