2012-10-01 74 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

相關問題