Back to the Top

Scroll to the top of the page

什麼是Back to the Top?

Back to the Top是由marinadecroon開發的Chrome擴展程式,該擴展的主要功能是“Scroll to the top of the page”。

擴展截圖

screenshot

下載Back to the Top擴展crx文件

下載Back to the Top擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A browser extension (add-on) for Google Chrome that allows you to quickly get back to the top and/or bottom of a page.                    

擴展基本資訊

名稱 Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
官方網址 https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
簡介 Scroll to the top of the page
檔案大小 14.1 KB
安裝次數 160
目前版本 1.0
更新時間 2022-04-18
上架時間 2022-04-18
評分 1.00/5 共 1 次評分
開發者 marinadecroon
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://sites.google.com/view/toptoscroll/home
支援的語言 en
manifest.json
{
    "background": {
        "service_worker": "sw.js"
    },
    "description": "Scroll to the top of the page",
    "name": "Back to the Top",
    "short_name": "up",
    "version": "1.0",
    "manifest_version": 3,
    "homepage_url": "https:\/\/avroraext.com",
    "action": {
        "default_icon": "icons\/icon_128.png"
    },
    "icons": {
        "128": "icons\/icon_128.png",
        "64": "icons\/icon_64.png",
        "32": "icons\/icon_32.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon_32.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}