Back to the Top

Scroll to the top of the page

Co to jest Back to the Top?

Back to the Top to rozszerzenie Chrome opracowane przez marinadecroon, a jego główną funkcją jest „Scroll to the top of the page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Back to the Top

Pobierz pliki rozszerzeń Back to the Top w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
Oficjalny URL https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
Opis Scroll to the top of the page
Rozmiar pliku 14.1 KB
Liczba instalacji 160
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-04-18
Data Publikacji 2022-04-18
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper marinadecroon
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://sites.google.com/view/toptoscroll/home
Obsługiwane Języki 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"
}