如何在卸载Google Chrome扩展程序时打开网址?

时间:2010-07-07 06:58:34

标签: google-chrome

我可以使用nsIObserverService在Firefox中完成。有类似的东西吗?任何正确文档的链接都会非常有用。

3 个答案:

答案 0 :(得分:6)

您现在可以设置版本41的chrome的卸载URL。

https://code.google.com/p/chromium/issues/detail?id=84556

这是文档。 https://developer.chrome.com/extensions/runtime#method-setUninstallURL

hths,未来读过这个问题的人。

答案 1 :(得分:2)

Chrome扩展程序API中没有可供卸载的挂钩。如果您想看到以下功能,请随意为以下功能加注星标:

http://code.google.com/p/chromium/issues/detail?id=19383

答案 2 :(得分:0)

Y在版本20之后可能会有一个新的api。

  

chrome.runtime.setUninstallUrl

更多数据:http://developer.chrome.com/extensions/runtime.html#method-setUninstallUrl

也有安装钩子:

  

chrome.runtime.onInstalled

更多细节:http://developer.chrome.com/extensions/runtime.html#event-onInstalled

对于20以下的浏览器,您必须在“管理”清单中声明权限。然后将打开的新选项卡方法绑定到onUninstalled

更多细节:http://developer.chrome.com/extensions/management.html#event-onUninstalled