Scroll to Top

Quickly scroll to top or bottom of the page and then return to the previous position.

Scroll to Topとは何ですか?

Scroll to Topはhttps://www.facebook.com/browserveryによって開発されたChromeの拡張機能で、その主な機能は「Quickly scroll to top or bottom of the page and then return to the previous position.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Scroll to Top拡張機能のCRXファイルをダウンロード

Scroll to Top拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Scroll to Top adds button to the left of your browser window that lets you:

★ Scroll to top by left-clicking on it.

★ Scroll to bottom by right-clicking on it.

★ Return to the previous position/remember your current position by middle clicking on it.

There're also customizable keyboard shortcuts for all these actions. To customize them go to chrome://extensions/shortcuts.
----------------------------------------------------------------
Permissions:
Read and change all your data on the websites you visit
Allows the extension to append the scroll button and do scrolling on pages (when the button is clicked).
----------------------------------------------------------------
🖼️ Follow my Facebook page (more extensions): https://www.facebook.com/browservery                    

拡張機能の基本情報

名前 Scroll to Top Scroll to Top
ID obebfhocibioiakindbigklnhhknkcdc
公式URL https://chromewebstore.google.com/detail/scroll-to-top/obebfhocibioiakindbigklnhhknkcdc
説明 Quickly scroll to top or bottom of the page and then return to the previous position.
ファイルサイズ 59.54 KB
インストール数 831
現在のバージョン 1.18.1
最終更新日 2024-01-19
公開日 2020-05-28
評価 4.37/5 合計 30 レビュー
開発者 https://www.facebook.com/browservery
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.facebook.com/browservery
ヘルプページのURL https://groups.google.com/g/browservery
プライバシーポリシーページのURL https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
対応言語 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll to Top",
    "description": "__MSG_app_description__",
    "version": "1.18.1",
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "sound.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Scroll to Top"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "smooth-scroll.min.js",
                "hf.js",
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "commands": {
        "to_top": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "__MSG_to_top_hotkey__"
        },
        "to_bottom": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "__MSG_to_bottom_hotkey__"
        },
        "return": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "__MSG_return_hotkey__"
        },
        "remember_position": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "__MSG_remember_position_hotkey__"
        }
    }
}