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

Side by Side Diff: ui/file_manager/file_manager/manifest.json

Issue 1679983003: Set wallpaper from right click menu in Files app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use enum Created 4 years, 10 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
« no previous file with comments | « ui/file_manager/file_manager/main.html ('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 "manifest_version": 2, 4 "manifest_version": 2,
5 "name": "Files", 5 "name": "Files",
6 "version": "3.0", 6 "version": "3.0",
7 "description": "File Manager", 7 "description": "File Manager",
8 "incognito" : "split", 8 "incognito" : "split",
9 "icons": { 9 "icons": {
10 "16": "common/images/icon16.png", 10 "16": "common/images/icon16.png",
(...skipping 26 matching lines...) Expand all
37 "https://www.google-analytics.com/", 37 "https://www.google-analytics.com/",
38 "launcherSearchProvider", 38 "launcherSearchProvider",
39 "mediaGalleries", 39 "mediaGalleries",
40 "mediaPlayerPrivate", 40 "mediaPlayerPrivate",
41 "metricsPrivate", 41 "metricsPrivate",
42 "notifications", 42 "notifications",
43 "power", 43 "power",
44 "storage", 44 "storage",
45 "syncFileSystem", 45 "syncFileSystem",
46 "unlimitedStorage", 46 "unlimitedStorage",
47 "wallpaper",
47 "webstoreWidgetPrivate", 48 "webstoreWidgetPrivate",
48 "webview" 49 "webview"
49 ], 50 ],
50 "file_browser_handlers": [ 51 "file_browser_handlers": [
51 { 52 {
52 "id": "mount-archive", 53 "id": "mount-archive",
53 "default_title": "__MSG_MOUNT_ARCHIVE__", 54 "default_title": "__MSG_MOUNT_ARCHIVE__",
54 "default_icon": "common/images/file_types/200/archive.png", 55 "default_icon": "common/images/file_types/200/archive.png",
55 "file_filters": [ 56 "file_filters": [
56 "filesystem:*.rar", 57 "filesystem:*.rar",
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 "background/js/test_util_base.js", 218 "background/js/test_util_base.js",
218 "background/js/test_util.js", 219 "background/js/test_util.js",
219 "background/js/volume_manager.js", 220 "background/js/volume_manager.js",
220 "background/js/background.js" 221 "background/js/background.js"
221 ] 222 ]
222 }, 223 },
223 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension. 224 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension.
224 "content_security_policy": "default-src 'none'; script-src 'self' blob: file system: chrome://resources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp c hrome-extension://fbjakikfhfdajcamjleinfciajelkpek; style-src 'self' blob: files ystem: 'unsafe-inline' chrome://resources chrome-extension://fbjakikfhfdajcamjle infciajelkpek; frame-src 'self' blob: filesystem: about:; img-src 'self' blob: f ilesystem: chrome://resources chrome://theme data: https://docs.google.com https ://*.googleusercontent.com chrome://extension-icon; media-src 'self' blob: files ystem: https://*.googleusercontent.com; connect-src https://drive.google.com htt ps://www.google-analytics.com chrome://resources; object-src 'self' blob: filesy stem:; font-src chrome://resources;" 225 "content_security_policy": "default-src 'none'; script-src 'self' blob: file system: chrome://resources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp c hrome-extension://fbjakikfhfdajcamjleinfciajelkpek; style-src 'self' blob: files ystem: 'unsafe-inline' chrome://resources chrome-extension://fbjakikfhfdajcamjle infciajelkpek; frame-src 'self' blob: filesystem: about:; img-src 'self' blob: f ilesystem: chrome://resources chrome://theme data: https://docs.google.com https ://*.googleusercontent.com chrome://extension-icon; media-src 'self' blob: files ystem: https://*.googleusercontent.com; connect-src https://drive.google.com htt ps://www.google-analytics.com chrome://resources; object-src 'self' blob: filesy stem:; font-src chrome://resources;"
225 } 226 }
226 } 227 }
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/main.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698