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
官方網址 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": []
}