Smooth Cursorify

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

Vad är Smooth Cursorify?

Smooth Cursorify är en Chrome-tillägg utvecklad av Ewen Le Bihan, och dess huvudfunktion är "Apply a Microsoft Word-like smooth caret animation to multiple online editors".

Tilläggsskärmbilder

Ladda ner Smooth Cursorify-förlängningens CRX-fil

Ladda ner Smooth Cursorify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Smooth Cursorify Smooth Cursorify
ID ohhjfajndpfpbimipmehmdkblnbelaec
Officiell webbadress https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec
Beskrivning Apply a Microsoft Word-like smooth caret animation to multiple online editors
Filstorlek 5.17 KB
Antal Installationer 1,499
Aktuell Version 0.2.0
Senast Uppdaterad 2022-03-10
Publiceringsdatum 2021-12-29
Betyg 5.00/5 Totalt 29 Betyg
Utvecklare Ewen Le Bihan
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/ewen-lbh/smooth-cursorify
Hjälpsida URL https://github.com/ewen-lbh/smooth-cursorify/issues/
Stödda Språk 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"
    }
}