Back to the Top

Scroll to the top of the page

Was ist Back to the Top?

Back to the Top ist eine Chrome-Erweiterung, die von marinadecroon entwickelt wurde, und ihr Hauptmerkmal ist "Scroll to the top of the page".

Erweiterungsscreenshots

screenshot

Back to the Top-Erweiterungs-CRX-Datei herunterladen

Laden Sie Back to the Top-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
Offizielle URL https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
Beschreibung Scroll to the top of the page
Dateigröße 14.1 KB
Installationsanzahl 160
Aktuelle Version 1.0
Letztes Update 2022-04-18
Veröffentlichungsdatum 2022-04-18
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler marinadecroon
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://sites.google.com/view/toptoscroll/home
Unterstützte Sprachen 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"
}