Auto Scroll

Automatically scroll down on your current web page

What is Auto Scroll?

Auto Scroll is a Chrome extension developed by PracticalApplications, and its main feature is "Automatically scroll down on your current web page".

Extension Screenshots

screenshot
screenshot

Download Auto Scroll Extension CRX File

Download Auto Scroll extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
Official URL https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
Description Automatically scroll down on your current web page
File Size 44.83 KB
Installation Count 460
Current Version 1.0
Last Updated 2018-02-20
Publish Date 2018-02-20
Rating 3.75/5 Total 4 Ratings
Developer PracticalApplications
Payment Type free
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}