Chrome Wheel
Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.
Cos'è Chrome Wheel?
Chrome Wheel è un'estensione di Chrome sviluppata da http://samskivert.com, e la sua funzione principale è "Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.".
Scarica il file CRX dell'estensione Chrome Wheel
Scarica i file di estensione Chrome Wheel in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Back in the good old days, ctrl-mousewheel or alt-mousewheel scrolled the page in large (full page) increments. That was actually useful. Then someone had the genius idea of making that scale the page up or down. Not so useful in my humble opinion, so this plugin restores the "scroll faster" behavior.
Informazioni di Base sull'Estensione
Nome | |
ID | ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
URL Ufficiale | https://chrome.google.com/webstore/detail/chrome-wheel/ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
Descrizione | Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior. |
Dimensione del File | 3.52 KB |
Conteggio Installazioni | 19 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2016-12-02 |
Data di Pubblicazione | 2016-12-02 |
Valutazione | 3.00/5 Totale 3 Valutazioni |
Sviluppatore | http://samskivert.com |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome Wheel", "version": "1.0.1", "description": "Makes alt\/shift\/ctrl-scrollwheel scroll in large increments instead of default behavior.", "permissions": [ "tabs" ], "content_scripts": [ { "js": [ "chromewheel.js" ], "run_at": "document_start", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "all_frames": true } ] } |