Scroll Speed
Change the scroll speed
Scroll Speedคืออะไร?
Scroll Speed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bert Hekman และคุณลักษณะหลักของมันคือ "Change the scroll speed"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Scroll Speed
ดาวน์โหลดไฟล์ส่วนขยาย 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 } |