diff options
Diffstat (limited to 'ext/api.js')
-rw-r--r-- | ext/api.js | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -22,5 +22,13 @@ function sendMessage(action, data, callback) { } function findTerm(text, callback) { - sendMessage('findTerm', {term: text}, callback); + sendMessage('findTerm', {text: text}, callback); +} + +function findKanji(text, callback) { + sendMessage('findKanji', {text: text}, callback); +} + +function getState(callback) { + sendMessage('getState', null, callback); } |