AutoCorrect
Help you to improve copywriting, correct spaces, words, punctuations between CJK (Chinese, Japanese, Korean).
Was ist AutoCorrect?
AutoCorrect ist eine Chrome-Erweiterung, die von huacnlee entwickelt wurde, und ihr Hauptmerkmal ist "Help you to improve copywriting, correct spaces, words, punctuations between CJK (Chinese, Japanese, Korean).".
Erweiterungsscreenshots
AutoCorrect-Erweiterungs-CRX-Datei herunterladen
Laden Sie AutoCorrect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
实现浏览器,选择文字,做自动纠正。
基于 Rust 编写的 CLI 工具,用于「自动纠正」或「检查并建议」文案,给 CJK(中文、日语、韩语)与英文混写的场景,补充正确的空格,纠正单词,同时尝试以安全的方式自动纠正标点符号等等。
类似 ESlint、Rubocop、Gofmt 等工具,AutoCorrect 可以用于 CI 环境,它提供 Lint 功能,能便捷的检测出项目中有问题的文案,起到统一规范的作用。 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jmdkfbbaaimfbnafjbkpipgafpnlcdaa |
| Offizielle URL | https://chromewebstore.google.com/detail/autocorrect/jmdkfbbaaimfbnafjbkpipgafpnlcdaa |
| Beschreibung | Help you to improve copywriting, correct spaces, words, punctuations between CJK (Chinese, Japanese, Korean). |
| Dateigröße | 501 KB |
| Installationsanzahl | 22 |
| Aktuelle Version | 0.2.0 |
| Letztes Update | 2022-10-12 |
| Veröffentlichungsdatum | 2022-10-08 |
| Entwickler | huacnlee |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/huacnlee/autocorrect |
| Unterstützte Sprachen | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AutoCorrect",
"description": "Help you to improve copywriting, correct spaces, words, punctuations between CJK (Chinese, Japanese, Korean).",
"version": "0.2.0",
"permissions": [
"contextMenus",
"scripting"
],
"host_permissions": [
"http:\/\/*\/",
"https:\/\/*\/"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"action": [],
"manifest_version": 3,
"icons": {
"16": "icons\/16x16.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
},
"background": {
"service_worker": "background.js"
}
} | |