我有一个引导扩展,并且bootstrap.js
有一个卸载事件:
function uninstall(data, reason) {
console.log('uninstall event');
}
但是当我卸载我的扩展uninstall
功能时,并没有在控制台上写“卸载事件”。
我已经extensions.logging.enabled
开始true
使用about:config
. 卸载时会在控制台上打印:
LOG addons.xpi:在 user@example.com 版本 1.4 上调用引导方法卸载
但是我在事件中编写的自定义消息uninstall
没有打印出来。