谷歌Chrome应用程序打开一个网站?

时间:2012-10-01 06:20:20

标签: google-chrome-extension

如何制作只会打开网站的Google Chrome应用程序?

就像网站的快捷方式一样?

1 个答案:

答案 0 :(得分:2)

这很简单:

<强> manifest.json

{
    "manifest_version": 2,
    "name": "Test App",
    "description": "I'm a test app",
    "version": "1.0.0",
    "app": {
        "launch": {
            "web_url": "http://www.example.org/"  // This is the redirect URL
        }
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}

只需将manifest.json16.png48.png128.png放入文件夹即可,您的扩展程序已完成。

之后,打开扩展程序页面,然后选中开发者模式复选框。从那里,您可以捆绑您的扩展程序或只需通过导航到扩展程序的文件夹解压缩安装:

enter image description here