Chrome 扩展的清单如何工作?

发布于 2024-11-05 20:02:45 字数 470 浏览 1 评论 0原文

我为 google chrome 做了一个扩展,但我不喜欢市场发出的警告:(

此扩展可能有权访问:

您在每个网站上的数据

您的历史数据

清单:

{
  "name": "extension name",
  "description": "description cool super description.",
  "version": "1.0",
  "permissions": [ "tabs", "http://*/*", "https://*/*" ],
  "browser_action": {
      "default_icon": "icon.png",
      "popup": "popup.html"
  }
}

有什么方法可以向谷歌解释我没有访问这些内容吗?只是一个显示星号的应用程序:(

I made an extension for google chrome but I don't like what the market put as a warning :(

This extension may have access to:

Your data on every website

Your history data

the manifest:

{
  "name": "extension name",
  "description": "description cool super description.",
  "version": "1.0",
  "permissions": [ "tabs", "http://*/*", "https://*/*" ],
  "browser_action": {
      "default_icon": "icon.png",
      "popup": "popup.html"
  }
}

Is there any way to explain to google that I don't access any of this? is just an app to reveal asterisk :(

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

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

发布评论

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

评论(1

夜光 2024-11-12 20:02:45

如果您指的是“浏览器历史记录”部分,那么这是网上商店网站上的一个错误,应该有人报告。这与他们自己的文档相矛盾,其中提到标签权限应引发“您的选项卡和浏览活动”警告。 (可以使用此错误报告作为参考)

“您的所有网站上的数据”是正确的。他们的警告不是显示您做了什么,而是显示您可以做什么。

If you mean "browser history" part then it's a bug on the webstore website which someone should report. This contradicts their own docs where it says that tab permission should raise "Your tabs and browsing activity" warning. (As a reference this bug report could be used)

"Your data on all websites" is correct one. Their warnings show not what you do, but what you can potentially do.

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