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

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

Issue 1123373003: Launch webstore widget app when unsupported printer is plugged in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_cws_widget_scripts
Patch Set: bump app version Created 5 years, 7 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.1", 6 "version": "0.2",
7 "manifest_version": 2, 7 "manifest_version": 2,
8 "display_in_launcher": false, 8 "display_in_launcher": false,
9
9 "web_accessible_resources": [ 10 "web_accessible_resources": [
10 "cws_widget/app_installer.js", 11 "cws_widget/app_installer.js",
11 "cws_widget/cws_webview_client.js", 12 "cws_widget/cws_webview_client.js",
12 "cws_widget/cws_widget_container.css", 13 "cws_widget/cws_widget_container.css",
13 "cws_widget/cws_widget_container.js", 14 "cws_widget/cws_widget_container.js",
14 "cws_widget/cws_widget_container_error_dialog.js", 15 "cws_widget/cws_widget_container_error_dialog.js",
15 "cws_widget/spinner.svg" 16 "cws_widget/spinner.svg"
16 ], 17 ],
18
17 "app": { 19 "app": {
18 "background": { 20 "background": {
19 "scripts": ["app/background.js"] 21 "scripts": ["app/background.js"]
20 } 22 },
23 "content_security_policy": "style-src 'self' chrome://resources; img-src 'se lf' chrome://theme chrome://resources;"
21 }, 24 },
25
22 "permissions": [ 26 "permissions": [
27 "chrome://resources/",
28 "chrome://theme/",
29 "fileManagerPrivate",
30 "webstoreWidgetPrivate",
31 "webview"
23 ] 32 ]
24 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698