Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
Co to jest Smooth Cursorify?
Smooth Cursorify to rozszerzenie Chrome opracowane przez Ewen Le Bihan, a jego główną funkcją jest „Apply a Microsoft Word-like smooth caret animation to multiple online editors”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Smooth Cursorify
Pobierz pliki rozszerzeń Smooth Cursorify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | ohhjfajndpfpbimipmehmdkblnbelaec |
| Oficjalny URL | https://chromewebstore.google.com/detail/smooth-cursorify/ohhjfajndpfpbimipmehmdkblnbelaec |
| Opis | Apply a Microsoft Word-like smooth caret animation to multiple online editors |
| Rozmiar pliku | 5.17 KB |
| Liczba instalacji | 1,499 |
| Aktualna Wersja | 0.2.0 |
| Ostatnia Aktualizacja | 2022-03-10 |
| Data Publikacji | 2021-12-29 |
| Ocena | 5.00/5 Łącznie 29 Oceny |
| Deweloper | Ewen Le Bihan |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/ewen-lbh/smooth-cursorify |
| Adres URL Strony Pomocy | https://github.com/ewen-lbh/smooth-cursorify/issues/ |
| Obsługiwane Języki | 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"
}
} | |