Skip to content

Instantly share code, notes, and snippets.

@inoh
Last active August 29, 2015 14:02
Show Gist options
  • Save inoh/78a733a5ee186690dbf9 to your computer and use it in GitHub Desktop.
Save inoh/78a733a5ee186690dbf9 to your computer and use it in GitHub Desktop.
chromeアプリを作る

参考
https://support.google.com/chrome/a/answer/2714278?hl=ja

manifest.jsonを作る

{
"manifest_version": 2,
"name": "test app",
"description": "テスト用のアプリケーションです。",
"version": "1.1",
"icons": {
"128": "128.png"
},
"app": {
"urls": [
"http://certification.googleapps.com/app-info/"
],
"launch": {
"web_url": "http://certification.googleapps.com/"
}
},
"permissions": [
"unlimitedStorage",
"notifications"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment