Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
Smooth Cursorifyคืออะไร?
Smooth Cursorify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ewen Le Bihan และคุณลักษณะหลักของมันคือ "Apply a Microsoft Word-like smooth caret animation to multiple online editors"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Smooth Cursorify
ดาวน์โหลดไฟล์ส่วนขยาย Smooth Cursorify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Apply a Microsoft Word-like smooth caret animation to multiple online editors. Currently supported websites: * Google Docs (https://docs.google.com/) * Overleaf (https://www.overleaf.com/) Head over to GitHub to request new websites: https://github.com/ewen-lbh/smooth-cursorify
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Smooth Cursorify |
ID | ohhjfajndpfpbimipmehmdkblnbelaec |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec |
คำอธิบาย | Apply a Microsoft Word-like smooth caret animation to multiple online editors |
ขนาดไฟล์ | 5.17 KB |
จำนวนการติดตั้ง | 1,499 |
เวอร์ชันปัจจุบัน | 0.2.0 |
อัปเดตครั้งล่าสุด | 2022-03-10 |
วันที่เผยแพร่ | 2021-12-29 |
คะแนน | 5.00/5 รวมทั้งหมด 29 คะแนน |
ผู้พัฒนา | Ewen Le Bihan |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ewen-lbh/smooth-cursorify |
URL หน้าช่วยเหลือ | https://github.com/ewen-lbh/smooth-cursorify/issues/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Smooth Cursorify", "short_name": "Smooth Cursorify", "version": "0.2.0", "manifest_version": 2, "description": "Apply a Microsoft Word-like smooth caret animation to multiple online editors", "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*", "http:\/\/docs.google.com\/document\/*" ], "js": [ "google-docs.js" ] }, { "matches": [ "https:\/\/www.overleaf.com\/project\/*", "http:\/\/www.overleaf.com\/project\/*" ], "js": [ "overleaf.js" ] } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |