Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
What is Smooth Cursorify?
Smooth Cursorify is a Chrome extension developed by Ewen Le Bihan, and its main feature is "Apply a Microsoft Word-like smooth caret animation to multiple online editors".
Extension Screenshots
Download Smooth Cursorify Extension CRX File
Download Smooth Cursorify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Smooth Cursorify |
ID | ohhjfajndpfpbimipmehmdkblnbelaec |
Official URL | https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec |
Description | Apply a Microsoft Word-like smooth caret animation to multiple online editors |
File Size | 5.17 KB |
Installation Count | 1,499 |
Current Version | 0.2.0 |
Last Updated | 2022-03-10 |
Publish Date | 2021-12-29 |
Rating | 5.00/5 Total 29 Ratings |
Developer | Ewen Le Bihan |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ewen-lbh/smooth-cursorify |
Help Page URL | https://github.com/ewen-lbh/smooth-cursorify/issues/ |
Supported Languages | 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" } } |