为什么webextension安装失败?
Why webextension installation failure?
我正在学习如何编写网络扩展程序。
所以我从头开始复制 here 的 "beastify" 扩展名。
但是我复制的版本安装失败
不知道为什么安装失败
相同的目录结构,相同的含义代码,相同的图片文件。
估计是manifest.json安装失败的原因。
我的manifest.json:
{
"manifest_version": 2,
"name": "Beastify",
"version": 1.0,
"description": "add a browser action icon to the toolbar. Click the button to choose a beast. The active tab's body content is then replaced with a picture of the choosen beast.",
"icons": {
"48": "icons/beasts-48.png"
},
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": "icons/beasts-32.png",
"default_title": "Beastify",
"default_popup": "popup/choose_beast.html"
},
"web_accessible_resources": [
"beasts/frog.jpg",
"beasts/turtle.jpg",
"beasts/snake.jpg"
]
}
version
的值必须是字符串。
请将 "version": 1.0,
替换为 "version": "1.0",
.
我正在学习如何编写网络扩展程序。
所以我从头开始复制 here 的 "beastify" 扩展名。
但是我复制的版本安装失败
不知道为什么安装失败
相同的目录结构,相同的含义代码,相同的图片文件。
估计是manifest.json安装失败的原因。
我的manifest.json:
{
"manifest_version": 2,
"name": "Beastify",
"version": 1.0,
"description": "add a browser action icon to the toolbar. Click the button to choose a beast. The active tab's body content is then replaced with a picture of the choosen beast.",
"icons": {
"48": "icons/beasts-48.png"
},
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": "icons/beasts-32.png",
"default_title": "Beastify",
"default_popup": "popup/choose_beast.html"
},
"web_accessible_resources": [
"beasts/frog.jpg",
"beasts/turtle.jpg",
"beasts/snake.jpg"
]
}
version
的值必须是字符串。
请将 "version": 1.0,
替换为 "version": "1.0",
.