2012-10-01 72 views

回答

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

+0

对于一个基本问题的漂亮答案。它应该被接受。 – Exception

相关问题