如何在扩展程序中调用 chrome.tabs.captureVisibleTab 而不要求 允许?

发布于 2025-01-06 00:42:48 字数 392 浏览 0 评论 0 原文

我正在编写一个 chrome 扩展程序,我想截取运行该扩展程序的选项卡的屏幕截图。扩展程序网址类似于“chrome-extension://abcde”。如果我包含“tabs”和“>”,一切正常在我的权限列表中,但我真的不想要求 >允许。

我尝试将“chrome-extension://abcde”添加到权限中,而不是 >我收到错误“您无权使用‘tabs.captureVisibleTab’。请务必在清单中声明您需要哪些权限。”

我该如何解决这个问题?

I'm writing a chrome extension and I want to take a screenshot of the tab in which the extension is running. The extension url is like "chrome-extension://abcde". Everything works if I include "tabs" and "<all_urls>" in my list of permissions, but I don't really want to ask for the <all_urls> permission.

I tried adding "chrome-extension://abcde" to permissions instead of <all_urls> and I get the error "You do not have permission to use 'tabs.captureVisibleTab'. Be sure to declare in your manifest what permissions you need."

How can I solve this?

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

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

发布评论

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

评论(1

仅此而已 2025-01-13 00:42:48

您应该在权限中指定您希望能够捕获的主机。现在您已将其设置为您自己的扩展 ID,因此它可能无法正常工作。

captureVisibleTab - 捕获指定窗口中当前活动选项卡的可见区域。您必须拥有该选项卡显示的 URL 的主机权限。

http://code.google.com/chrome/extensions/tabs.html

You should specify the hosts you want to be able to capture in the permissions. Now you've set it to your own Extension ID so that's why it's probably not working.

captureVisibleTab - Captures the visible area of the currently active tab in the specified window. You must have host permission for the URL displayed by the tab.

http://code.google.com/chrome/extensions/tabs.html

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