Smooth Cursorify
Apply a Microsoft Word-like smooth caret animation to multiple online editors
什么是Smooth Cursorify?
Smooth Cursorify是由Ewen Le Bihan开发的Chrome扩展程序,该扩展的主要功能是“Apply a Microsoft Word-like smooth caret animation to multiple online editors”。
扩展截图
下载Smooth Cursorify扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
}
} | |