Auto Scroll

Automatically scroll down on your current web page

Wat is Auto Scroll?

Auto Scroll is een Chrome-extensie ontwikkeld door PracticalApplications, en de belangrijkste functie is "Automatically scroll down on your current web page".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Auto Scroll

Download Auto Scroll-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

                        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.                    

Basisinformatie over de Extensie

Naam Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
Officiële URL https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
Beschrijving Automatically scroll down on your current web page
Bestandsgrootte 44.83 KB
Aantal Installaties 460
Huidige Versie 1.0
Laatst Bijgewerkt 2018-02-20
Publicatiedatum 2018-02-20
Beoordeling 3.75/5 Totaal 4 Beoordelingen
Ontwikkelaar PracticalApplications
Betalingswijze free
Ondersteunde Talen 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:\/\/*\/*"
            ]
        }
    ]
}