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

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: Merge 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
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chrome://theme/", 20 "chrome://theme/",
21 "tabs", 21 "tabs",
22 "clipboardWrite", 22 "clipboardWrite",
23 "clipboardRead", 23 "clipboardRead",
24 "https://*.googleusercontent.com/" 24 "https://*.googleusercontent.com/",
25 "https://drive.google.com/"
25 ], 26 ],
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 chrome://theme data: https://docs.google.com https://*.googleusercontent.com c hrome://extension-icon; media-src 'self' https://*.googleusercontent.com;", 27 "content_security_policy": "default-src 'none'; script-src 'self'; style-src ' self' 'unsafe-inline'; frame-src 'self' about:; img-src 'self' chrome://resource s chrome://theme data: https://docs.google.com https://*.googleusercontent.com c hrome://extension-icon; media-src 'self' https://*.googleusercontent.com; connec t-src https://drive.google.com",
27 "app": { 28 "app": {
28 "launch": { 29 "launch": {
29 "container": "panel", 30 "container": "panel",
30 "local_path": "main.html" 31 "local_path": "main.html"
31 } 32 }
32 }, 33 },
33 "file_browser_handlers": [ 34 "file_browser_handlers": [
34 { 35 {
35 "id": "play", 36 "id": "play",
36 "default_title": "__MSG_PLAY_MEDIA__", 37 "default_title": "__MSG_PLAY_MEDIA__",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 "files": "main.html" 174 "files": "main.html"
174 }, 175 },
175 "background": { 176 "background": {
176 "transient": true, 177 "transient": true,
177 "persistent": false, 178 "persistent": false,
178 "scripts": ["js/file_copy_manager.js", 179 "scripts": ["js/file_copy_manager.js",
179 "js/path_util.js", 180 "js/path_util.js",
180 "js/util.js"] 181 "js/util.js"]
181 } 182 }
182 } 183 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/mock_chrome.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698