Middle Click Scroll
Clicking the middle click/wheel now takes you to the top of the page
Τι είναι το Middle Click Scroll;
Το Middle Click Scroll είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alarv, και η κύρια λειτουργία του είναι "Clicking the middle click/wheel now takes you to the top of the page".
Λήψη αρχείου CRX της επέκτασης Middle Click Scroll
Λήψη αρχείων επέκτασης Middle Click Scroll σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | fjpenocmelcgifceikomkkjkhdfgghjn |
Επίσημο URL | https://chrome.google.com/webstore/detail/middle-click-scroll/fjpenocmelcgifceikomkkjkhdfgghjn |
Περιγραφή | Clicking the middle click/wheel now takes you to the top of the page |
Μέγεθος Αρχείου | 15.16 KB |
Αριθμός Εγκαταστάσεων | 195 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2016-06-07 |
Ημερομηνία Δημοσίευσης | 2016-06-07 |
Αξιολόγηση | 2.29/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | alarv |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } ] } |