How to listen to uninstallation event in javascript from a chrome extension?

前端 未结 2 1843
余生分开走
余生分开走 2021-01-22 18:16

I\'m trying to clean some preferences files when a user uninstall my extension from chrome browser.

On google website, http://code.google.com/chrome/extensions/external_

相关标签:
2条回答
  • 2021-01-22 18:54

    What they mean by that paragraph is if you are uninstalling your software that was bundled with the extension, you should manually uninstall the extension as well by removing registry entries.

    There is an uninstall event:

    chrome.management.onUninstalled.addListener(function(string id) {...});
    

    It would work for listening to other extensions being uninstalled, but catching your own uninstall with it most likely would not be possible.

    0 讨论(0)
  • 2021-01-22 19:11

    You may use "setUninstallURL" method. Once your extension is being uninstalled, it will open specified URL so that you can do something on your server.

    https://developer.chrome.com/extensions/runtime#method-setUninstallURL

    0 讨论(0)
提交回复
热议问题