如何在firefox插件中使用«l10n»?

时间:2014-06-17 11:28:39

标签: javascript firefox firefox-addon mozilla

如何发送和接收请求?

必须将结果放在变量中。

enter image description here

UPD:无解决方案

1 个答案:

答案 0 :(得分:1)

你需要让你的popup.js代码异步,如下所示:

let locale;
(function storageGet(name) {
  self.port.once('localeOn', name => {
    locale = name;
  })
  self.port.emit('localeEmit', name);
})();

或关注the sdk instructions on localizing html pages here