我正在将Chrome扩展程序移植到Firefox WebExtensions。 Chrome上的一切正常。
我在Firefox上试过这些:
1。修改我的扩展程序以使其与Firefox WebExtensions兼容,然后通过Load Temporary Add-on
将其加载到Firefox中,一切正常
2。按web-ext
安装npm install -g web-ext
模块。然后我运行web-ext run
,Firefox已成功启动我的扩展程序
3. 运行web-ext build
,然后在Firefox上安装打包扩展程序,一切正常
D:\temp>web-ext build
Building web extension from D:\temp
Your web extension is ready: D:\temp\web-ext-artifacts\my_extension-1.0.zip
4. 然后我运行web-ext sign --api-key=MyApiKey --api-secret=MyApiSecret
,失败并显示错误:
D:\temp>web-ext sign --api-key=MyApiKey --api-secret=MyApiSecret
Building web extension from D:\temp
sign: Error: ENOTEMPTY: directory not empty, rmdir 'C:\Users\abc\AppData\Local\Temp\tmp-web-ext-628J9dJMBi0bWRX'
at Error (native)
at Object.fs.rmdirSync (fs.js:806:18)
at _rmdirRecursiveSync (C:\Users\abc\AppData\Roaming\npm\node_modules\web-ext\node_modules\tmp\lib\tmp.js:284:10)
at TempDir._cleanupCallback [as _removeTempDir] (C:\Users\abc\AppData\Roaming\npm\node_modules\web-ext\node_modules\tmp\lib\tmp.js:408:5)
at TempDir.remove (C:\Users\abc\AppData\Roaming\npm\node_modules\web-ext\dist\webpack:\src\util\temp-dir.js:9:4939)
at C:\Users\abc\AppData\Roaming\npm\node_modules\web-ext\dist\webpack:\src\util\temp-dir.js:9:3976
at process._tickCallback (node.js:401:9)
sign: Error code: ENOTEMPTY
我进入了C:\Users\abc\AppData\Local\Temp\tmp-web-ext-628J9dJMBi0bWRX
,实际上它是空的。有人知道为什么会这样吗?
我的api密钥和api秘密适用于旧的Firefox JSCTypes附加组件。这是我不断收到此错误的原因吗?
答案 0 :(得分:2)
解决此问题的方法
经过多次挖掘后,我发现导致此错误的原因是我在网络上使用代理。我尝试通过运行命令set HTTP_PROXY=MyProxyServerAddress
来设置代理,然后错误消失。
其他问题解决
然后我尝试再次运行web-ext sign
,发现另一个错误:
Server response: You do not own this addon. (status: 403)
sign: WebExtError: The WebExtension could not be signed
我将我的加载项(由web-ext build
生成的打包)上传到Mozilla Add-on Site,然后再次运行web-ext sign
。这次加载项已成功签名。
注意:每次运行
web-ext sign
时,您都需要更改加载项的版本。否则它将失败并显示错误:Server response: Version already exists. (status: 409)
<强>干杯!强>