Middle Click Scroll
Clicking the middle click/wheel now takes you to the top of the page
Was ist Middle Click Scroll?
Middle Click Scroll ist eine Chrome-Erweiterung, die von alarv entwickelt wurde, und ihr Hauptmerkmal ist "Clicking the middle click/wheel now takes you to the top of the page".
Middle Click Scroll-Erweiterungs-CRX-Datei herunterladen
Laden Sie Middle Click Scroll-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | |
ID | fjpenocmelcgifceikomkkjkhdfgghjn |
Offizielle URL | https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn |
Beschreibung | Clicking the middle click/wheel now takes you to the top of the page |
Dateigröße | 15.16 KB |
Installationsanzahl | 195 |
Aktuelle Version | 1.0 |
Letztes Update | 2016-06-07 |
Veröffentlichungsdatum | 2016-06-07 |
Bewertung | 2.29/5 Insgesamt 7 Bewertungen |
Entwickler | alarv |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |