Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
Qu'est-ce que Smooth Cursorify ?
Smooth Cursorify est une extension Chrome développée par Ewen Le Bihan, et sa fonction principale est "Apply a Microsoft Word-like smooth caret animation to multiple online editors".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Smooth Cursorify
Téléchargez les fichiers d'extension Smooth Cursorify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Smooth Cursorify |
ID | ohhjfajndpfpbimipmehmdkblnbelaec |
URL Officiel | https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec |
Description | Apply a Microsoft Word-like smooth caret animation to multiple online editors |
Taille du Fichier | 5.17 KB |
Nombre d'Installations | 1,499 |
Version Actuelle | 0.2.0 |
Dernière Mise à Jour | 2022-03-10 |
Date de Publication | 2021-12-29 |
Évaluation | 5.00/5 Total 29 Évaluations |
Développeur | Ewen Le Bihan |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ewen-lbh/smooth-cursorify |
URL de la Page d'Aide | https://github.com/ewen-lbh/smooth-cursorify/issues/ |
Langues Prises en Charge | 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" } } |