Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: chrome/common/extensions/docs/examples/apps/background-simple/manifest.json

Issue 9289057: Changing manifest to v2 extension samples (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Cleaning up warnings Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "name": "Simple Background App", 2 "name": "Simple Background App",
3 "version": "0.1", 3 "version": "0.2",
4 "app": { 4 "app": {
5 "urls": [ "http://SOME_SITE_WITHOUT_PORT_NUMBERS/SOME_PATH/" ], 5 "urls": [ "http://SOME_SITE_WITHOUT_PORT_NUMBERS/SOME_PATH/" ],
6 "launch": { 6 "launch": {
7 "web_url": "http://SOME_SITE/SOME_PATH/index.html" 7 "web_url": "http://SOME_SITE/SOME_PATH/index.html"
8 } 8 }
9 }, 9 },
10 "permissions": ["background", "notifications"] 10 "permissions": ["background", "notifications"],
11 "manifest_version": 2
11 } 12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698