Middle Click Scroll

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

Co je Middle Click Scroll?

Middle Click Scroll je rozšíření Chrome vyvinuté alarv, a jeho hlavní funkcí je „Clicking the middle click/wheel now takes you to the top of the page“.

Stáhnout soubor CRX rozšíření Middle Click Scroll

Stáhněte si soubory rozšíření Middle Click Scroll ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
Oficiální URL https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Popis Clicking the middle click/wheel now takes you to the top of the page
Velikost souboru 15.16 KB
Počet instalací 195
Aktuální Verze 1.0
Poslední Aktualizace 2016-06-07
Datum Vydání 2016-06-07
Hodnocení 2.29/5 Celkem 7 Hodnocení
Vývojář alarv
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}