Middle Click Scroll
Clicking the middle click/wheel now takes you to the top of the page
Wat is Middle Click Scroll?
Middle Click Scroll is een Chrome-extensie ontwikkeld door alarv, en de belangrijkste functie is "Clicking the middle click/wheel now takes you to the top of the page".
Download het CRX-bestand van de extensie Middle Click Scroll
Download Middle Click Scroll-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | |
ID | fjpenocmelcgifceikomkkjkhdfgghjn |
Officiële URL | https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn |
Beschrijving | Clicking the middle click/wheel now takes you to the top of the page |
Bestandsgrootte | 15.16 KB |
Aantal Installaties | 195 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2016-06-07 |
Publicatiedatum | 2016-06-07 |
Beoordeling | 2.29/5 Totaal 7 Beoordelingen |
Ontwikkelaar | alarv |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |