Middle Click Scroll

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

Cos'è Middle Click Scroll?

Middle Click Scroll è un'estensione di Chrome sviluppata da alarv, e la sua funzione principale è "Clicking the middle click/wheel now takes you to the top of the page".

Scarica il file CRX dell'estensione Middle Click Scroll

Scarica i file di estensione Middle Click Scroll in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
URL Ufficiale https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Descrizione Clicking the middle click/wheel now takes you to the top of the page
Dimensione del File 15.16 KB
Conteggio Installazioni 195
Versione Corrente 1.0
Ultimo Aggiornamento 2016-06-07
Data di Pubblicazione 2016-06-07
Valutazione 2.29/5 Totale 7 Valutazioni
Sviluppatore alarv
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}