Chrome 扩展的清单如何工作?
我为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您指的是“浏览器历史记录”部分,那么这是网上商店网站上的一个错误,应该有人报告。这与他们自己的文档相矛盾,其中提到
标签
权限应引发“您的选项卡和浏览活动”警告。 (可以使用此错误报告作为参考)“您的所有网站上的数据”是正确的。他们的警告不是显示您做了什么,而是显示您可以做什么。
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.