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
Eメール [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": []
}