我有一个自举扩展程序,在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上调用bootstrap方法卸载
但我在uninstall
事件中写的自定义消息无法打印。