I have a chrome extension that does spell check. I want to implement the feature to 'add a word to dictionary' but I read that chrome extension api does not allow reading and writing to disk.
currently my dictionary is an array of strings:
var dictionary = ["google", "apache", "microsoft"];
My question is this: How should I properly store my dictionary? And how can I change its content during run time for the 'add to dictionary feature'?