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
As Josh mentioned, use the chrome storage API.
For example chrome.storage.sync.set() and chrome.storage.sync.get() automatically syncs the saved data between the different devices the user uses - it's very nice both for developers and users.