Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
Что такое Smooth Cursorify?
Smooth Cursorify - это расширение Chrome, разработанное Ewen Le Bihan, и его основная функция - "Apply a Microsoft Word-like smooth caret animation to multiple online editors".
Снимки экрана расширения
Скачать файл CRX расширения Smooth Cursorify
Скачайте файлы расширений Smooth Cursorify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | Smooth Cursorify |
ID | ohhjfajndpfpbimipmehmdkblnbelaec |
Официальный URL | https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec |
Описание | Apply a Microsoft Word-like smooth caret animation to multiple online editors |
Размер файла | 5.17 KB |
Количество установок | 1,499 |
Текущая Версия | 0.2.0 |
Последнее Обновление | 2022-03-10 |
Дата публикации | 2021-12-29 |
Рейтинг | 5.00/5 Всего 29 оценок |
Разработчик | Ewen Le Bihan |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/ewen-lbh/smooth-cursorify |
URL страницы помощи | https://github.com/ewen-lbh/smooth-cursorify/issues/ |
Поддерживаемые языки | 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" } } |