Auto Scroll

Automatically scroll down on your current web page

什么是Auto Scroll?

Auto Scroll是由PracticalApplications开发的Chrome扩展程序,该扩展的主要功能是“Automatically scroll down on your current web page”。

扩展截图

screenshot
screenshot

下载Auto Scroll扩展crx文件

下载Auto Scroll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
官方URL https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
简介 Automatically scroll down on your current web page
文件大小 44.83 KB
安装次数 460
当前版本 1.0
更新时间 2018-02-20
上架时间 2018-02-20
评分 3.75/5 共4次评分
开发者 PracticalApplications
付费类型 free
支持的语言 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:\/\/*\/*"
            ]
        }
    ]
}