关闭带有扩展程序的 Chrome

发布于 2024-12-06 10:47:02 字数 34 浏览 1 评论 0原文

是否可以在 Chrome 扩展程序中关闭整个应用程序?

Is it possible to close the entire application within a chrome extension?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彻夜缠绵 2024-12-13 10:47:02

您必须使用 Chrome Windows API 来关闭所有窗口:

chrome.windows.getAll({}, function(windows){
  for(var i = 0; i < windows.length; i++)
    chrome.windows.remove(windows[i].id);
});

仅关闭标签页,请使用 chrome.tabs.remove()

You would have to use the Chrome Windows API to close all windows:

chrome.windows.getAll({}, function(windows){
  for(var i = 0; i < windows.length; i++)
    chrome.windows.remove(windows[i].id);
});

To just close a tab, use chrome.tabs.remove().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文