Scroll to Top

Quickly scroll to top or bottom of the page and then return to the previous position.

Wat is Scroll to Top?

Scroll to Top is een Chrome-extensie ontwikkeld door https://www.facebook.com/browservery, en de belangrijkste functie is "Quickly scroll to top or bottom of the page and then return to the previous position.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Scroll to Top

Download Scroll to Top-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Scroll to Top adds button to the left of your browser window that lets you:

★ Scroll to top by left-clicking on it.

★ Scroll to bottom by right-clicking on it.

★ Return to the previous position/remember your current position by middle clicking on it.

There're also customizable keyboard shortcuts for all these actions. To customize them go to chrome://extensions/shortcuts.
----------------------------------------------------------------
Permissions:
Read and change all your data on the websites you visit
Allows the extension to append the scroll button and do scrolling on pages (when the button is clicked).
----------------------------------------------------------------
🖼️ Follow my Facebook page (more extensions): https://www.facebook.com/browservery                    

Basisinformatie over de Extensie

Naam Scroll to Top Scroll to Top
ID obebfhocibioiakindbigklnhhknkcdc
Officiële URL https://chromewebstore.google.com/detail/scroll-to-top/obebfhocibioiakindbigklnhhknkcdc
Beschrijving Quickly scroll to top or bottom of the page and then return to the previous position.
Bestandsgrootte 59.54 KB
Aantal Installaties 831
Huidige Versie 1.18.1
Laatst Bijgewerkt 2024-01-19
Publicatiedatum 2020-05-28
Beoordeling 4.37/5 Totaal 30 Beoordelingen
Ontwikkelaar https://www.facebook.com/browservery
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.facebook.com/browservery
Help Pagina-URL https://groups.google.com/g/browservery
URL van de Privacybeleid Pagina https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md
Ondersteunde Talen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scroll to Top",
    "description": "__MSG_app_description__",
    "version": "1.18.1",
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "resources": [
                "sound.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Scroll to Top"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "smooth-scroll.min.js",
                "hf.js",
                "content_script.js"
            ],
            "css": [
                "content_script.css"
            ]
        }
    ],
    "commands": {
        "to_top": {
            "suggested_key": {
                "default": "Alt+O"
            },
            "description": "__MSG_to_top_hotkey__"
        },
        "to_bottom": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "__MSG_to_bottom_hotkey__"
        },
        "return": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "__MSG_return_hotkey__"
        },
        "remember_position": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "__MSG_remember_position_hotkey__"
        }
    }
}