Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
Apa itu Smooth Cursorify?
Smooth Cursorify adalah ekstensi Chrome yang dikembangkan oleh Ewen Le Bihan, dan fitur utamanya adalah "Apply a Microsoft Word-like smooth caret animation to multiple online editors".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Smooth Cursorify
Unduh file ekstensi Smooth Cursorify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Smooth Cursorify |
ID | ohhjfajndpfpbimipmehmdkblnbelaec |
URL Resmi | https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec |
Deskripsi | Apply a Microsoft Word-like smooth caret animation to multiple online editors |
Ukuran File | 5.17 KB |
Jumlah Instalasi | 1,499 |
Versi Saat Ini | 0.2.0 |
Terakhir Diperbarui | 2022-03-10 |
Tanggal Publikasi | 2021-12-29 |
Penilaian | 5.00/5 Total 29 Penilaian |
Pengembang | Ewen Le Bihan |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/ewen-lbh/smooth-cursorify |
URL Halaman Bantuan | https://github.com/ewen-lbh/smooth-cursorify/issues/ |
Bahasa yang Didukung | 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" } } |