Middle Click Scroll

Clicking the middle click/wheel now takes you to the top of the page

Qu'est-ce que Middle Click Scroll ?

Middle Click Scroll est une extension Chrome développée par alarv, et sa fonction principale est "Clicking the middle click/wheel now takes you to the top of the page".

Télécharger le fichier CRX de l'extension Middle Click Scroll

Téléchargez les fichiers d'extension Middle Click Scroll 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

                        Give life to your mouse wheel click! By clicking the mouse wheel or the middle mouse click, you can now scroll to the top of the page or to the bottom! If you want to cancel your action, don't worry! 1 second after you keep the mouse wheel clicked, the event is cancelled, to avoid unwanted scrolls. Enjoy scrolling!                    

Informations de Base sur l'Extension

Nom Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
URL Officiel https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Description Clicking the middle click/wheel now takes you to the top of the page
Taille du Fichier 15.16 KB
Nombre d'Installations 195
Version Actuelle 1.0
Dernière Mise à Jour 2016-06-07
Date de Publication 2016-06-07
Évaluation 2.29/5 Total 7 Évaluations
Développeur alarv
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": 2,
    "name": "Middle Click Scroll",
    "version": "1.0",
    "description": "Clicking the middle click\/wheel now takes you to the top of the page",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Alex",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}