Top and Bottom scroll buttons

Adds scroll to Top and Bottom buttons on all sites

Qu'est-ce que Top and Bottom scroll buttons ?

Top and Bottom scroll buttons est une extension Chrome développée par OmDev, et sa fonction principale est "Adds scroll to Top and Bottom buttons on all sites".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Top and Bottom scroll buttons

Téléchargez les fichiers d'extension Top and Bottom scroll buttons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Navigate long pages more easily.

This extension adds two beautiful buttons at the corner of each page for fast scrolling to the top or the bottom of the page.

The buttons are customisable. You can change its size, transparency, position and the way they are scrolling.
You can also set the buttons to auto hide so you'll see them only when you want.

This extension is free, created for the people of the internet.

Limitations: As any other addon it doesn't work on Chrome web store, browser specific pages like "about:addons", on other extensions pages like options page of some addon. It's a browser security limitation, made for your own safety ;)                    

Informations de Base sur l'Extension

Nom Top and Bottom scroll buttons Top and Bottom scroll buttons
ID dbofniohnfjigodceiebfkcfdhncnici
URL Officiel https://chromewebstore.google.com/detail/top-and-bottom-scroll-but/dbofniohnfjigodceiebfkcfdhncnici
Description Adds scroll to Top and Bottom buttons on all sites
Taille du Fichier 53.82 KB
Nombre d'Installations 3,653
Version Actuelle 2.0.0
Dernière Mise à Jour 2023-12-27
Date de Publication 2018-12-11
Évaluation 4.50/5 Total 38 Évaluations
Développeur OmDev
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Top and Bottom scroll buttons",
    "short_name": "Scroll buttons",
    "description": "Adds scroll to Top and Bottom buttons on all sites",
    "version": "2.0.0",
    "icons": {
        "48": "img\/icon-48.png",
        "96": "img\/icon-96.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "content\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "options\/options-storage.js",
                "content\/buttons.js"
            ],
            "css": [
                "content\/buttons.css"
            ],
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/arrow-up.svg",
                "img\/arrow-dn.svg"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    }
}