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 |
Eメール | [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 } |