Scroll Speed
Change the scroll speed
Wat is Scroll Speed?
Scroll Speed is een Chrome-extensie ontwikkeld door Bert Hekman, en de belangrijkste functie is "Change the scroll speed".
Extensie Screenshots
Download het CRX-bestand van de extensie Scroll Speed
Download Scroll Speed-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
Change the scrolling speed of the mouse wheel
Basisinformatie over de Extensie
Naam | Scroll Speed |
ID | mfmhdfkinffhnfhaalnabffcfjgcmdhl |
Officiële URL | https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl |
Beschrijving | Change the scroll speed |
Bestandsgrootte | 10.95 KB |
Aantal Installaties | 3,683 |
Huidige Versie | 0.1 |
Laatst Bijgewerkt | 2020-04-27 |
Publicatiedatum | 2020-04-23 |
Beoordeling | 4.28/5 Totaal 29 Beoordelingen |
Ontwikkelaar | Bert Hekman |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/DemonTPx/chrome-scroll-speed |
Help Pagina-URL | https://github.com/DemonTPx/chrome-scroll-speed/issues |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scroll Speed", "version": "0.1", "description": "Change the scroll speed", "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ], "exclude_globs": [ "*.pdf" ], "run_at": "document_start" } ], "icons": { "16": "icon_16.png", "32": "icon_32.png", "48": "icon_48.png", "128": "icon_128.png" }, "manifest_version": 2 } |