12

Clearly Chrome has a built-in dictionary that it uses for spell-checking. Is there an API or some way to access this dictionary? I am interested not in checking spelling, but actually accessing the dictionary. E.g. I would like to write Dictionary autocomplete extension for chrome? a dictionary autocomplete extension that uses Chrome's dictionary instead of maintaining my own. Of particular interest to me would be a funciton like getWordsThatStartWith(text).

Community
  • 1
  • 1
nullUser
  • 1,601
  • 1
  • 12
  • 29

2 Answers2

5

The dictionaries are available for download from http://src.chromium.org/viewvc/chrome/trunk/deps/third_party/hunspell_dictionaries/. (Files with .dic extension.)

Wouter J
  • 41,455
  • 15
  • 107
  • 112
rsolomakhin
  • 131
  • 1
  • 3
0

I am not sure if this is related to your request. It appears another developer created an extension to look up words, not sure if the api he founded used the internal dictionary spell-check or not...my assumption would be that the api merely return results from a google query using an advance search feature like "define: example", example being the query/word. Here's a link to the article though it's quite outdated.

http://googlesystem.blogspot.com/2009/12/on-googles-unofficial-dictionary-api.html