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
擴展基本資訊
名稱 | Smooth Cursorify |
ID | ohhjfajndpfpbimipmehmdkblnbelaec |
官方網址 | 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" } } |