Smooth Cursorify

Apply a Microsoft Word-like smooth caret animation to multiple online editors

Was ist Smooth Cursorify?

Smooth Cursorify ist eine Chrome-Erweiterung, die von Ewen Le Bihan entwickelt wurde, und ihr Hauptmerkmal ist "Apply a Microsoft Word-like smooth caret animation to multiple online editors".

Erweiterungsscreenshots

Smooth Cursorify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smooth Cursorify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Smooth Cursorify Smooth Cursorify
ID ohhjfajndpfpbimipmehmdkblnbelaec
Offizielle URL https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec
Beschreibung Apply a Microsoft Word-like smooth caret animation to multiple online editors
Dateigröße 5.17 KB
Installationsanzahl 1,499
Aktuelle Version 0.2.0
Letztes Update 2022-03-10
Veröffentlichungsdatum 2021-12-29
Bewertung 5.00/5 Insgesamt 29 Bewertungen
Entwickler Ewen Le Bihan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/ewen-lbh/smooth-cursorify
Hilfeseite URL https://github.com/ewen-lbh/smooth-cursorify/issues/
Unterstützte Sprachen 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"
    }
}