1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
{
// chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/
"key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM35ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEBh02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==",
"name": "File Manager",
"version": "0.1",
"description": "File Manager",
"incognito" : "split",
"icons": {
"16": "images/icon16.png"
},
"permissions": [
"fileBrowserHandler",
"fileBrowserPrivate",
"mediaPlayerPrivate",
"unlimitedStorage",
"chrome://extension-icon/",
"chrome://resources/"
],
"app": {
"launch": {
"local_path": "main.html"
}
},
"file_browser_handlers": [
{
"id": "preview",
"default_title": "__MSG_PREVIEW_IMAGE__",
"default_icon": "images/icon_preview_16x16.png",
"file_filters": [
"filesystem:*.bmp",
"filesystem:*.gif",
"filesystem:*.jpg",
"filesystem:*.jpeg",
"filesystem:*.webp",
"filesystem:*.png"
]
},
{
"id": "edit",
"default_title": "__MSG_PREVIEW_IMAGE__",
"default_icon": "images/icon_preview_16x16.png",
"file_filters": [
"filesystem:*.jpg",
"filesystem:*.jpeg"
]
},
{
"id": "play",
"default_title": "__MSG_PLAY_MEDIA__",
"default_icon": "images/icon_play_16x16.png",
"file_filters": [
"filesystem:*.3gp",
"filesystem:*.avi",
"filesystem:*.webm",
"filesystem:*.flac",
"filesystem:*.mp4",
"filesystem:*.m4v",
"filesystem:*.mov",
"filesystem:*.ogg",
"filesystem:*.oga",
"filesystem:*.ogm",
"filesystem:*.ogv",
"filesystem:*.ogx",
"filesystem:*.wav",
"filesystem:*.mp3",
"filesystem:*.m4a"
]
},
{
"id": "enqueue",
"default_title": "__MSG_ENQUEUE_MEDIA__",
"default_icon": "images/icon_add_to_queue_16x16.png",
"file_filters": [
"filesystem:*.avi",
"filesystem:*.webm",
"filesystem:*.mp4",
"filesystem:*.m4v",
"filesystem:*.mov",
"filesystem:*.ogg",
"filesystem:*.oga",
"filesystem:*.ogm",
"filesystem:*.ogv",
"filesystem:*.ogx",
"filesystem:*.wav",
"filesystem:*.mp3",
"filesystem:*.m4a"
]
},
{
"id": "mount-archive",
"default_title": "__MSG_MOUNT_ARCHIVE__",
"default_icon": "images/icon_mount_archive_16x16.png",
"file_filters": [
"filesystem:*.zip"
]
},
{
"id": "unmount-archive",
"default_title": "__MSG_UNMOUNT_ARCHIVE__",
"default_icon": "images/icon_unmount_archive_16x16.png",
"file_filters": [
"filesystem:*.mounted_zip"
]
}
],
"chrome_url_overrides": {
"files": "main.html"
}
}
|