Autoscroll : Automatic Page Scrolling

An extension to help scroll a webpage

什么是Autoscroll : Automatic Page Scrolling?

Autoscroll : Automatic Page Scrolling是由Emil Vinod开发的Chrome扩展程序,该扩展的主要功能是“An extension to help scroll a webpage”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Autoscroll : Automatic Page Scrolling扩展crx文件

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

扩展使用说明

                        This extension is perfect for those who are tired of manually scrolling through long articles, websites, or social media posts. No more tired fingers from scrolling or losing your place on a page. With Autoscroll, you can simply set the pace that you prefer and let the extension do the rest :)

For a guide to the extension visit : https://sites.google.com/view/autoscrollguide/home                    

扩展基本信息

名称 Autoscroll : Automatic Page Scrolling Autoscroll : Automatic Page Scrolling
ID mofpoefmipkeaakcglcfamacffochlid
官方URL https://chromewebstore.google.com/detail/autoscroll-automatic-page/mofpoefmipkeaakcglcfamacffochlid
简介 An extension to help scroll a webpage
文件大小 191 KB
安装次数 46
当前版本 0.0.1
更新时间 2024-01-23
上架时间 2023-11-23
评分 4.20/5 共5次评分
开发者 Emil Vinod
电子邮箱 [email protected]
付费类型 free
扩展官网 https://sites.google.com/view/autoscrollguide/home
帮助页面URL https://sites.google.com/view/autoscrollguide/home
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoscroll : Automatic Page Scrolling",
    "version": "0.0.1",
    "description": "An extension to help scroll a webpage",
    "icons": {
        "16": "Logo.png",
        "32": "Logo.png",
        "48": "Logo.png",
        "128": "Logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "js": "scroll.js"
    },
    "permissions": [
        "activeTab"
    ]
}