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

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

Issue 59713006: file_manager: Drop support for tar archive files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « no previous file | 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 "filesystem:*.ogx", 75 "filesystem:*.ogx",
76 "filesystem:*.webm" 76 "filesystem:*.webm"
77 ] 77 ]
78 }, 78 },
79 { 79 {
80 "id": "mount-archive", 80 "id": "mount-archive",
81 "default_title": "__MSG_MOUNT_ARCHIVE__", 81 "default_title": "__MSG_MOUNT_ARCHIVE__",
82 "default_icon": "common/images/file_types/200/archive.png", 82 "default_icon": "common/images/file_types/200/archive.png",
83 "file_filters": [ 83 "file_filters": [
84 "filesystem:*.rar", 84 "filesystem:*.rar",
85 "filesystem:*.tar",
86 "filesystem:*.tar.bz2",
87 "filesystem:*.tar.gz",
88 "filesystem:*.tbz",
89 "filesystem:*.tbz2",
90 "filesystem:*.tgz",
91 "filesystem:*.zip" 85 "filesystem:*.zip"
92 ] 86 ]
93 }, 87 },
94 { 88 {
95 "id": "view-pdf", 89 "id": "view-pdf",
96 "default_title": "__MSG_OPEN_ACTION__", 90 "default_title": "__MSG_OPEN_ACTION__",
97 "default_icon": "common/images/file_types/200/pdf.png", 91 "default_icon": "common/images/file_types/200/pdf.png",
98 "file_filters": [ 92 "file_filters": [
99 "filesystem:*.pdf" 93 "filesystem:*.pdf"
100 ] 94 ]
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 "background/js/volume_manager.js", 218 "background/js/volume_manager.js",
225 "background/js/file_operation_manager.js", 219 "background/js/file_operation_manager.js",
226 "background/js/test_util.js", 220 "background/js/test_util.js",
227 "background/js/progress_center.js", 221 "background/js/progress_center.js",
228 "background/js/background.js"] 222 "background/js/background.js"]
229 }, 223 },
230 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension. 224 // chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp is the image loader e xtension.
231 "content_security_policy": "default-src 'none'; script-src 'self' chrome://r esources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp; style-src 'self' ' unsafe-inline' chrome://resources; frame-src 'self' about:; img-src 'self' chrom e://resources chrome://theme data: https://docs.google.com https://*.googleuserc ontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent .com; connect-src https://drive.google.com; object-src 'self'" 225 "content_security_policy": "default-src 'none'; script-src 'self' chrome://r esources chrome-extension://pmfjbimdmchhbnneeidfognadeopoehp; style-src 'self' ' unsafe-inline' chrome://resources; frame-src 'self' about:; img-src 'self' chrom e://resources chrome://theme data: https://docs.google.com https://*.googleuserc ontent.com chrome://extension-icon; media-src 'self' https://*.googleusercontent .com; connect-src https://drive.google.com; object-src 'self'"
232 } 226 }
233 } 227 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698