Middle Click Scroll

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

Vad är Middle Click Scroll?

Middle Click Scroll är en Chrome-tillägg utvecklad av alarv, och dess huvudfunktion är "Clicking the middle click/wheel now takes you to the top of the page".

Ladda ner Middle Click Scroll-förlängningens CRX-fil

Ladda ner Middle Click Scroll-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Middle Click Scroll Middle Click Scroll
ID fjpenocmelcgifceikomkkjkhdfgghjn
Officiell webbadress https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn
Beskrivning Clicking the middle click/wheel now takes you to the top of the page
Filstorlek 15.16 KB
Antal Installationer 195
Aktuell Version 1.0
Senast Uppdaterad 2016-06-07
Publiceringsdatum 2016-06-07
Betyg 2.29/5 Totalt 7 Betyg
Utvecklare alarv
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}