Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I access Chrome's spell-check dictionary?

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).

like image 258
nullUser Avatar asked Aug 20 '12 15:08

nullUser


People also ask

How do I access Chrome dictionary?

Open Chrome and navigate to the Chrome Web Store. Search for "Google Dictionary" or follow this link to navigate directly to the listing.

Does Chrome have a built in spell checker?

Chrome or your operating system provides the spell check. It doesn't send the text you enter in your browser to Google.


1 Answers

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

like image 112
rsolomakhin Avatar answered Nov 09 '22 01:11

rsolomakhin