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

Side by Side Diff: chrome/browser/resources/apps_debugger/manifest.json

Issue 11428116: First few API implementation of AppsDebuggerPrivate. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixing build on windows Created 8 years 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 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDdTTWp0WWTp4XU15/xCchl4x4ZvG31cx /VT567UDgMLUL/+8j+3w3C87UJemJ3I5x81XJv8lhK3eIxR05H59UFsW9C70/hZCQeOhi5Uutl1gAlG4 xsJAX9EQjFmmKsN88wmfZvxNPlu0WoxtHxjXKogRfk+wujanMyXnmhHaDrvwIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDdTTWp0WWTp4XU15/xCchl4x4ZvG31cx /VT567UDgMLUL/+8j+3w3C87UJemJ3I5x81XJv8lhK3eIxR05H59UFsW9C70/hZCQeOhi5Uutl1gAlG4 xsJAX9EQjFmmKsN88wmfZvxNPlu0WoxtHxjXKogRfk+wujanMyXnmhHaDrvwIDAQAB",
3 "name": "Chrome Apps Debugger", 3 "name": "Chrome Apps Debugger",
4 "description": "Debug Chrome apps.", 4 "description": "Debug Chrome apps.",
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "version": "0.1", 6 "version": "0.1",
7 "app": { 7 "app": {
8 "background": { 8 "background": {
9 "scripts": ["background.js"] 9 "scripts": ["background.js"]
10 } 10 }
11 }, 11 },
12 "permissions": ["notifications"], 12 "permissions": ["notifications", "developerPrivate"],
13 "icons": { 13 "icons": {
14 "16": "images/dev-icon-16.png", 14 "16": "images/dev-icon-16.png",
15 "128": "images/dev-icon-128.png" 15 "128": "images/dev-icon-128.png"
16 } 16 }
17 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698