正如标题所述,当用户关闭浏览器时,我需要清除所有与扩展相关联的变量,这些变量是通过以下方式存储的:
chrome.storage.sync.set({'...
从这里(https://developer.chrome.com/apps/runtime)我已经看到,您可以清除类似以下事件的本地数据:
chrome.runtime.onStartup.addListener(function() {
chrome.storage.local.clear()
})
区别在于我需要在浏览器退出时清除同步数据。