Chrome应用创建

时间:2012-10-28 12:12:29

标签: google-chrome

这是我的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"
    }

}

你能告诉我如何解决这个问题吗?

0 个答案:

没有答案