function* watchEnableCJKMove() {
  yield takeEvery('ENABLE_CJK_MOVE', function* h() {
    const { enabledCJKMove } = yield select(state => state);
    yield browser.storage.local.set({ enabledCJKMove });
  });