Back to the Top

Scroll to the top of the page

Vad är Back to the Top?

Back to the Top är en Chrome-tillägg utvecklad av marinadecroon, och dess huvudfunktion är "Scroll to the top of the page".

Tilläggsskärmbilder

screenshot

Ladda ner Back to the Top-förlängningens CRX-fil

Ladda ner Back to the Top-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Back to the Top Back to the Top
ID gekpnhhoikfeampkegfmkfbeioefecio
Officiell webbadress https://chromewebstore.google.com/detail/back-to-the-top/gekpnhhoikfeampkegfmkfbeioefecio
Beskrivning Scroll to the top of the page
Filstorlek 14.1 KB
Antal Installationer 160
Aktuell Version 1.0
Senast Uppdaterad 2022-04-18
Publiceringsdatum 2022-04-18
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare marinadecroon
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://sites.google.com/view/toptoscroll/home
Stödda Språk 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"
}