无法在“chrome://settings/extensions”中看到我的扩展程序的缩略图当我加载解压的扩展时
我正在加载解压的扩展程序,但在 chrome://settings/extensions? 下看不到我的扩展程序的任何缩略图?
我是否应该在清单文件中添加任何内容?
这是我的清单文件..
{
"name": "a1",
"version": "1.0",
"description": "a1",
"background_page": "background.html",
"browser_action": {
"default_icon": "icon.png",
"popup": "popup.html"
}
}
I am loading an unpacked extension but I am unable to see any thumbnails for my extension under chrome://settings/extensions?
Whether I should add anything in manifest file?
Here is my manifest file..
{
"name": "a1",
"version": "1.0",
"description": "a1",
"background_page": "background.html",
"browser_action": {
"default_icon": "icon.png",
"popup": "popup.html"
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
browser_action.default_icon
只是多功能栏旁边按钮的图标。如果您想在chrome://settings/extensions
中使用图标,则需要设置 图标值。browser_action.default_icon
is only the icon for the button next to the omnibar. If you want an icon inchrome://settings/extensions
you need to set the icon value.