OLD | NEW |
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": "File Manager", | 4 "name": "File Manager", |
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" |
(...skipping 20 matching lines...) Expand all Loading... |
31 "file_filters": [ | 31 "file_filters": [ |
32 "filesystem:*.bmp", | 32 "filesystem:*.bmp", |
33 "filesystem:*.gif", | 33 "filesystem:*.gif", |
34 "filesystem:*.jpg", | 34 "filesystem:*.jpg", |
35 "filesystem:*.jpeg", | 35 "filesystem:*.jpeg", |
36 "filesystem:*.webp", | 36 "filesystem:*.webp", |
37 "filesystem:*.png" | 37 "filesystem:*.png" |
38 ] | 38 ] |
39 }, | 39 }, |
40 { | 40 { |
41 "id": "edit", | |
42 "default_title": "__MSG_PREVIEW_IMAGE__", | |
43 "default_icon": "images/icon_preview_16x16.png", | |
44 "file_filters": [ | |
45 "filesystem:*.jpg", | |
46 "filesystem:*.jpeg" | |
47 ] | |
48 }, | |
49 { | |
50 "id": "play", | 41 "id": "play", |
51 "default_title": "__MSG_PLAY_MEDIA__", | 42 "default_title": "__MSG_PLAY_MEDIA__", |
52 "default_icon": "images/icon_play_16x16.png", | 43 "default_icon": "images/icon_play_16x16.png", |
53 "file_filters": [ | 44 "file_filters": [ |
54 "filesystem:*.3gp", | 45 "filesystem:*.3gp", |
55 "filesystem:*.avi", | 46 "filesystem:*.avi", |
56 "filesystem:*.webm", | 47 "filesystem:*.webm", |
57 "filesystem:*.flac", | 48 "filesystem:*.flac", |
58 "filesystem:*.mp4", | 49 "filesystem:*.mp4", |
59 "filesystem:*.m4v", | 50 "filesystem:*.m4v", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 "filesystem:*.zip" | 87 "filesystem:*.zip" |
97 ] | 88 ] |
98 }, | 89 }, |
99 { | 90 { |
100 "id": "unmount-archive", | 91 "id": "unmount-archive", |
101 "default_title": "__MSG_UNMOUNT_ARCHIVE__", | 92 "default_title": "__MSG_UNMOUNT_ARCHIVE__", |
102 "default_icon": "images/icon_unmount_archive_16x16.png", | 93 "default_icon": "images/icon_unmount_archive_16x16.png", |
103 "file_filters": [ | 94 "file_filters": [ |
104 "filesystem:*.mounted_zip" | 95 "filesystem:*.mounted_zip" |
105 ] | 96 ] |
| 97 }, |
| 98 { |
| 99 "id": "gallery", |
| 100 "default_title": "__MSG_GALLERY__", |
| 101 "default_icon": "images/icon_preview_16x16.png", |
| 102 "file_filters": [ |
| 103 "filesystem:*.bmp", |
| 104 "filesystem:*.gif", |
| 105 "filesystem:*.jpg", |
| 106 "filesystem:*.jpeg", |
| 107 "filesystem:*.webp", |
| 108 "filesystem:*.png" |
| 109 ] |
106 } | 110 } |
107 ], | 111 ], |
108 "chrome_url_overrides": { | 112 "chrome_url_overrides": { |
109 "files": "main.html" | 113 "files": "main.html" |
110 } | 114 } |
111 } | 115 } |
OLD | NEW |