Middle Click Scroll
Clicking the middle click/wheel now takes you to the top of the page
Co to jest Middle Click Scroll?
Middle Click Scroll to rozszerzenie Chrome opracowane przez alarv, a jego główną funkcją jest „Clicking the middle click/wheel now takes you to the top of the page”.
Pobierz plik CRX rozszerzenia Middle Click Scroll
Pobierz pliki rozszerzeń Middle Click Scroll w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fjpenocmelcgifceikomkkjkhdfgghjn |
Oficjalny URL | https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn |
Opis | Clicking the middle click/wheel now takes you to the top of the page |
Rozmiar pliku | 15.16 KB |
Liczba instalacji | 195 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2016-06-07 |
Data Publikacji | 2016-06-07 |
Ocena | 2.29/5 Łącznie 7 Oceny |
Deweloper | alarv |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |