这是我的 manifest.json
{
"name" : "www.mysite.com",
"version" : "1.0",
"manifest_version" : 1,
"description" : "Stay Updated with the latest post from www.mysite.com",
"icons" : {
"128" : "icon_128.png"
},
"browser_action" : {
"default_icon" : "icon_19.png",
"popup" : "mysite.html"
}
}
正在工作..但我升级到清单 2 后不工作..
{
"name" : "www.mysite.com",
"version" : "1.0",
"manifest_version" : 2,
"description" : "Stay Updated with the latest post from www.mysite.com",
"icons" : {
"128" : "icon_128.png"
},
"browser_action" : {
"default_icon" : "icon_19.png",
"popup" : "mysite.html"
}
}
你能告诉我如何解决这个问题吗?