Scroll Speed
Change the scroll speed
什么是Scroll Speed?
Scroll Speed是由Bert Hekman开发的Chrome扩展程序,该扩展的主要功能是“Change the scroll speed”。
扩展截图
下载Scroll Speed扩展crx文件
下载Scroll Speed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Change the scrolling speed of the mouse wheel
扩展基本信息
名称 | Scroll Speed |
ID | mfmhdfkinffhnfhaalnabffcfjgcmdhl |
官方URL | https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl |
简介 | Change the scroll speed |
文件大小 | 10.95 KB |
安装次数 | 3,683 |
当前版本 | 0.1 |
更新时间 | 2020-04-27 |
上架时间 | 2020-04-23 |
评分 | 4.28/5 共29次评分 |
开发者 | Bert Hekman |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/DemonTPx/chrome-scroll-speed |
帮助页面URL | https://github.com/DemonTPx/chrome-scroll-speed/issues |
支持的语言 | 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 } |