Middle Click Scroll

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

Hvad er Middle Click Scroll?

Middle Click Scroll er en Chrome-udvidelse udviklet af alarv, og dens hovedfunktion er "Clicking the middle click/wheel now takes you to the top of the page".

Download Middle Click Scroll-udvidelses-CRX-fil

Download Middle Click Scroll-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
Officiel URL https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Beskrivelse Clicking the middle click/wheel now takes you to the top of the page
Filstørrelse 15.16 KB
Antal Installationer 195
Nuværende Version 1.0
Senest Opdateret 2016-06-07
Udgivelsesdato 2016-06-07
Bedømmelse 2.29/5 Samlet 7 Bedømmelser
Udvikler alarv
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}