Auto Scroll

Easily scroll to the top and the bottom of current page

什么是Auto Scroll?

Auto Scroll是由Gareth Ng开发的Chrome扩展程序,该扩展的主要功能是“Easily scroll to the top and the bottom of current page”。

扩展截图

screenshot
screenshot

下载Auto Scroll扩展crx文件

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

扩展使用说明

                        A simple tool for users, you can use this extension to auto scroll to the top or the bottom of current website.

By adding a small button on the page, users can easily click and reach the top of the webpage, without scrolling.

Users can also hide the button in the popup.

Enjoy your long page surfing!

Open source: https://github.com/garethng/GoToTop                    

扩展基本信息

名称 Auto Scroll Auto Scroll
ID cmbpfcapjacpbmehmemljdilabjnlfhb
官方URL https://chromewebstore.google.com/detail/auto-scroll/cmbpfcapjacpbmehmemljdilabjnlfhb
简介 Easily scroll to the top and the bottom of current page
文件大小 63.8 KB
安装次数 403
当前版本 1.2.0
更新时间 2022-09-30
上架时间 2021-12-30
评分 3.80/5 共5次评分
开发者 Gareth Ng
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/garethng/GoToTop
支持的语言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.2.0",
    "icons": {
        "48": "images\/icon-48.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png",
        "512": "images\/icon-512.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "jQuery.js",
                "content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/toolbar-icon-16.png",
            "19": "images\/toolbar-icon-19.png",
            "32": "images\/toolbar-icon-32.png",
            "38": "images\/toolbar-icon-38.png"
        }
    },
    "permissions": [
        "contextMenus",
        "storage"
    ]
}