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

Side by Side Diff: components/chrome_apps/webstore_widget/manifest.json

Issue 1211033002: Set icon for Chrome Webstore Gallery Widget app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 // chrome-extension://fbjakikfhfdajcamjleinfciajelkpek/ 2 // chrome-extension://fbjakikfhfdajcamjleinfciajelkpek/
3 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ZSmlOjtKoapSOZ4kH4vpSh2Wz GxT7AlJgTet+0v5O/eV56dg1D+hpIltMswe47zX3kozOOzZ3LhnLHZb7kBIyVdgmtAv73XP1/CjvO7w1 F5dzdS3zqJEg4JIblKmGIs8Zb93rols5DsJth58w3nPDz94clWQY3VI0IsgPfgssi/5OHyyzd3fVZS6U QU1XBkfZ+mpUQSKD293Rqq2aol1WgmyVumj7o8YM73SU/9Hnxla56ew88Zv/A78o1i1X6mcQcLCexDIA wcerJ09TvrLRv0sexRKBx47YZqVmR5yJRNGQiJdV54Es/jP6K8Oy8oZnz7Wea/nAL0b0OKAcq7+QIDAQ AB", 3 "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ZSmlOjtKoapSOZ4kH4vpSh2Wz GxT7AlJgTet+0v5O/eV56dg1D+hpIltMswe47zX3kozOOzZ3LhnLHZb7kBIyVdgmtAv73XP1/CjvO7w1 F5dzdS3zqJEg4JIblKmGIs8Zb93rols5DsJth58w3nPDz94clWQY3VI0IsgPfgssi/5OHyyzd3fVZS6U QU1XBkfZ+mpUQSKD293Rqq2aol1WgmyVumj7o8YM73SU/9Hnxla56ew88Zv/A78o1i1X6mcQcLCexDIA wcerJ09TvrLRv0sexRKBx47YZqVmR5yJRNGQiJdV54Es/jP6K8Oy8oZnz7Wea/nAL0b0OKAcq7+QIDAQ AB",
4 "name": "Chrome Webstore Gallery Widget app", 4 "name": "Chrome Webstore Gallery Widget app",
5 "description": "App for showing Chrome Webstore Gallery widget and handling ex tension installs from the widget", 5 "description": "App for showing Chrome Webstore Gallery widget and handling ex tension installs from the widget",
6 "version": "0.2", 6 "version": "0.2",
7 "manifest_version": 2, 7 "manifest_version": 2,
8 "display_in_launcher": false, 8 "display_in_launcher": false,
9 9
10 "web_accessible_resources": [ 10 "web_accessible_resources": [
11 "cws_widget/app_installer.js", 11 "cws_widget/app_installer.js",
12 "cws_widget/cws_webview_client.js", 12 "cws_widget/cws_webview_client.js",
13 "cws_widget/cws_widget_container.css", 13 "cws_widget/cws_widget_container.css",
14 "cws_widget/cws_widget_container.js", 14 "cws_widget/cws_widget_container.js",
15 "cws_widget/cws_widget_container_error_dialog.js" 15 "cws_widget/cws_widget_container_error_dialog.js"
16 ], 16 ],
17 17
18 "icons": {
19 "16": "app/icons/icon_16.png",
20 "32": "app/icons/icon_32.png",
21 "128": "app/icons/icon_128.png"
22 },
23
18 "app": { 24 "app": {
19 "background": { 25 "background": {
20 "scripts": ["app/background.js"] 26 "scripts": ["app/background.js"]
21 }, 27 },
22 "content_security_policy": "style-src 'self' blob: filesystem: chrome://reso urces; img-src 'self' blob: filesystem: chrome://theme chrome://resources;" 28 "content_security_policy": "style-src 'self' blob: filesystem: chrome://reso urces; img-src 'self' blob: filesystem: chrome://theme chrome://resources;"
23 }, 29 },
24 30
25 "permissions": [ 31 "permissions": [
26 "chrome://resources/", 32 "chrome://resources/",
27 "chrome://theme/", 33 "chrome://theme/",
28 "fileManagerPrivate", 34 "fileManagerPrivate",
29 "webstoreWidgetPrivate", 35 "webstoreWidgetPrivate",
30 "webview" 36 "webview"
31 ] 37 ]
32 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698