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

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

Issue 10909230: Fixed new promo banner showing condition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 // chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/ 2 // chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/
3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM3 5ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEB h02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==", 3 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM3 5ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEB h02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==",
4 "name": "Files", 4 "name": "Files",
5 "version": "0.1", 5 "version": "0.1",
6 "description": "File Manager", 6 "description": "File Manager",
7 "incognito" : "split", 7 "incognito" : "split",
8 "icons": { 8 "icons": {
9 "16": "images/icon16.png", 9 "16": "images/icon16.png",
10 "128": "images/icon128.png" 10 "128": "images/icon128.png"
11 }, 11 },
12 "permissions": [ 12 "permissions": [
13 "fileBrowserHandler", 13 "fileBrowserHandler",
14 "fileBrowserPrivate", 14 "fileBrowserPrivate",
15 "mediaPlayerPrivate", 15 "mediaPlayerPrivate",
16 "metricsPrivate", 16 "metricsPrivate",
17 "unlimitedStorage", 17 "unlimitedStorage",
18 "chrome://extension-icon/", 18 "chrome://extension-icon/",
19 "chrome://resources/", 19 "chrome://resources/",
20 "tabs", 20 "tabs",
21 "clipboardWrite", 21 "clipboardWrite",
22 "clipboardRead", 22 "clipboardRead",
23 "https://*.googleusercontent.com/" 23 "https://*.googleusercontent.com/",
24 "https://drive.google.com/"
Vladislav Kaznacheev 2012/09/14 12:18:45 Do we need this url added in 2 places?
SeRya 2012/09/14 14:36:23 It looks like we do. CSP and permissions give diff
24 ], 25 ],
25 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' chrome://resource s data: https://docs.google.com https://*.googleusercontent.com chrome://extensi on-icon; media-src 'self' https://*.googleusercontent.com;", 26 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' chrome://resource s data: https://docs.google.com https://*.googleusercontent.com chrome://extensi on-icon; media-src 'self' https://*.googleusercontent.com; connect-src https://d rive.google.com",
26 "app": { 27 "app": {
27 "launch": { 28 "launch": {
28 "container": "panel", 29 "container": "panel",
29 "local_path": "main.html" 30 "local_path": "main.html"
30 } 31 }
31 }, 32 },
32 "file_browser_handlers": [ 33 "file_browser_handlers": [
33 { 34 {
34 "id": "play", 35 "id": "play",
35 "default_title": "__MSG_PLAY_MEDIA__", 36 "default_title": "__MSG_PLAY_MEDIA__",
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 "files": "main.html" 160 "files": "main.html"
160 }, 161 },
161 "background": { 162 "background": {
162 "transient": true, 163 "transient": true,
163 "persistent": false, 164 "persistent": false,
164 "scripts": ["js/file_copy_manager.js", 165 "scripts": ["js/file_copy_manager.js",
165 "js/path_util.js", 166 "js/path_util.js",
166 "js/util.js"] 167 "js/util.js"]
167 } 168 }
168 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698