Scroll Speed
Change the scroll speed
Vad är Scroll Speed?
Scroll Speed är en Chrome-tillägg utvecklad av Bert Hekman, och dess huvudfunktion är "Change the scroll speed".
Tilläggsskärmbilder
Ladda ner Scroll Speed-förlängningens CRX-fil
Ladda ner Scroll Speed-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Change the scrolling speed of the mouse wheel Grundläggande Information om Tillägg
| Namn | |
| ID | mfmhdfkinffhnfhaalnabffcfjgcmdhl |
| Officiell webbadress | https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl |
| Beskrivning | Change the scroll speed |
| Filstorlek | 10.95 KB |
| Antal Installationer | 3,683 |
| Aktuell Version | 0.1 |
| Senast Uppdaterad | 2020-04-27 |
| Publiceringsdatum | 2020-04-23 |
| Betyg | 4.28/5 Totalt 29 Betyg |
| Utvecklare | Bert Hekman |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/DemonTPx/chrome-scroll-speed |
| Hjälpsida URL | https://github.com/DemonTPx/chrome-scroll-speed/issues |
| Stödda Språk | 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
} | |