Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
Hvad er Smooth Cursorify?
Smooth Cursorify er en Chrome-udvidelse udviklet af Ewen Le Bihan, og dens hovedfunktion er "Apply a Microsoft Word-like smooth caret animation to multiple online editors".
Udvidelsesskærmbilleder
Download Smooth Cursorify-udvidelses-CRX-fil
Download Smooth Cursorify-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Smooth Cursorify |
ID | ohhjfajndpfpbimipmehmdkblnbelaec |
Officiel URL | https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec |
Beskrivelse | Apply a Microsoft Word-like smooth caret animation to multiple online editors |
Filstørrelse | 5.17 KB |
Antal Installationer | 1,499 |
Nuværende Version | 0.2.0 |
Senest Opdateret | 2022-03-10 |
Udgivelsesdato | 2021-12-29 |
Bedømmelse | 5.00/5 Samlet 29 Bedømmelser |
Udvikler | Ewen Le Bihan |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/ewen-lbh/smooth-cursorify |
Hjælpeside-URL | https://github.com/ewen-lbh/smooth-cursorify/issues/ |
Understøttede Sprog | 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" } } |