Back to the Top

Scroll to the top of the page

What is Back to the Top?

Back to the Top is a Chrome extension developed by marinadecroon, and its main feature is "Scroll to the top of the page".

Extension Screenshots

screenshot

Download Back to the Top Extension CRX File

Download Back to the Top extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
Official URL https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
Description Scroll to the top of the page
File Size 14.1 KB
Installation Count 160
Current Version 1.0
Last Updated 2022-04-18
Publish Date 2022-04-18
Rating 1.00/5 Total 1 Ratings
Developer marinadecroon
Email [email protected]
Payment Type free
Privacy Policy Page URL https://sites.google.com/view/toptoscroll/home
Supported Languages 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"
}