Scroll To Top

Scroll to top and vice versa in a window.

什么是Scroll To Top?

Scroll To Top是由Pratik Soni开发的Chrome扩展程序,该扩展的主要功能是“Scroll to top and vice versa in a window.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Scroll To Top扩展crx文件

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

扩展使用说明

                        Everyday scrolling on long pages can be a tiring experience specially on those sites which provides infinite scrolling (like facebook, twitter, etc). You will keep scrolling using your mouse to see more and more updates and then when you want to go up to the top of the page, you might move your hand from your mouse to keyboard to search for Home key or you will drag the scroll bar to the top.

Scroll To Top tries to minimize this effort by providing an intuitive icon at the bottom-right corner of each page so that with one click you will be at the top of the page with beautiful animation. No more searching for Home key on your keyboard and no more dragging of the scroll bar. It will be just fun and ergonomic to use it.

GitHub Rep: https://github.com/pratikabu/scrolltotop
Release notes: https://github.com/pratikabu/scrolltotop/releases                    

扩展基本信息

名称 Scroll To Top Scroll To Top
ID hegiignepmecppikdlbohnnbfjdoaghj
官方URL https://chromewebstore.google.com/detail/scroll-to-top/hegiignepmecppikdlbohnnbfjdoaghj
简介 Scroll to top and vice versa in a window.
文件大小 304 KB
安装次数 27,990
当前版本 5.0
更新时间 2023-08-25
上架时间 2020-06-06
评分 4.67/5 共492次评分
开发者 Pratik Soni
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/pratikabu/scrolltotop
帮助页面URL https://github.com/pratikabu/scrolltotop/discussions
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll To Top",
    "version": "5.0",
    "description": "Scroll to top and vice versa in a window.",
    "icons": {
        "16": "icons\/pratikabu-stt-16.png",
        "48": "icons\/pratikabu-stt-48-1.png",
        "128": "icons\/pratikabu-stt-128.png"
    },
    "author": "Pratik Soni",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "pratikabu-stt.css"
            ],
            "matches": [
                ""
            ],
            "js": [
                "thirdparty\/pratikabu-jquery-3.2.1.min.js",
                "browserspecific\/pratikabu-stt-impl.js",
                "pratikabu-stt.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/github.com\/pratikabu\/scrolltotop",
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": []
}