Google Chrome中的自定义拼写

时间:2014-01-21 22:29:01

标签: google-chrome google-chrome-extension

Google Chrome是否允许对默认拼写词典进行任何操作?我已根据此搜索材料,无法找到任何材料。尝试开发适用于Google Chrome等Google Chrome网络应用的拼写器。目前,我的拼写检查应用程序无法在与Google文档或Office 365相关的任何文本字段或区域中使用。此外,我有自己的单词列表,我想将其合并到Chrome的拼写器中?可以这样做吗?可以将第三方自定义词典添加到Google Chrome的拼写工具中吗?只是寻找解释这个的资源,因为我找不到任何资源。

1 个答案:

答案 0 :(得分:2)

a quick search on the issue tracker之后,我发现an issue在扩展平台上添加了(记录错误的)功能。

根据commit message,您可以使用manifest文件中的“拼写检查”键添加新词典。

{
  "name": "Dictionary Test",
  "description": "Load a spellcheck dictionary.",
  "version": "1.0",
  "manifest_version": 2,

  "spellcheck": {
    "dictionary_language": "testEnglish",
    "dictionary_locale": "te",
    "dictionary_format": "hunspell",
    "dictionary_path": "testEnglish.bdic"
  }
}

由于此功能的文档不存在,如果您想知道如何使用此功能,则必须阅读Chromium的源代码。以下是将新功能添加到扩展API的提交的差异:https://chromiumcodereview.appspot.com/download/issue14064004_10001.diff

这里有一些关于字典格式的文档:http://www.chromium.org/developers/how-tos/editing-the-spell-checking-dictionaries