Home | History | Annotate | Download | only in file_manager
      1 {
      2   // chrome-extension://hhaomjibdihmijegdhdafkllkbggdgoj/
      3   "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQDlhpGghtnNJ7pluQN0RDwbUxwwi99oM35ZEaFYvxPLrf0fIEC18cfDdJi6u4aJ+UoSpgzK731L0P/k4LvK2Rz9kVKOy0+IvuRrWkT7lbrLfA1UEBh02OA1AAshjmyRg4IxCqgl8ia8XWq6HKegS1y1KXZYGgb4qp7Bh9VC4cIzswIBIw==",
      4   "name": "File Manager",
      5   "version": "0.1",
      6   "description": "File Manager",
      7   "incognito" : "split",
      8   "icons": {
      9     "16": "images/icon16.png"
     10   },
     11   "permissions": [
     12     "fileBrowserHandler",
     13     "fileBrowserPrivate",
     14     "unlimitedStorage",
     15     "chrome://extension-icon/",
     16     "chrome://resources/"
     17   ],
     18   "file_browser_handlers": [
     19     {
     20       "id": "preview",
     21       "default_title": "__MSG_PREVIEW_IMAGE__",
     22       "default_icon": "images/icon_preview_16x16.png",
     23       "file_filters": [
     24         "filesystem:*.gif",
     25         "filesystem:*.jpg",
     26         "filesystem:*.jpeg",
     27         "filesystem:*.webp",
     28         "filesystem:*.png",
     29         "filesystem:*.GIF",
     30         "filesystem:*.JPG",
     31         "filesystem:*.JPEG",
     32         "filesystem:*.WEBP",
     33         "filesystem:*.PNG"
     34       ]
     35     },
     36     {
     37       "id": "play",
     38       "default_title": "__MSG_PLAY_MEDIA__",
     39       "default_icon": "images/icon_play_16x16.png",
     40       "file_filters": [
     41         "filesystem:*.webm",
     42         "filesystem:*.WEBM",
     43         "filesystem:*.mp4",
     44         "filesystem:*.MP4",
     45         "filesystem:*.m4v",
     46         "filesystem:*.M4V",
     47         "filesystem:*.mov",
     48         "filesystem:*.MOV",
     49         "filesystem:*.ogg",
     50         "filesystem:*.OGG",
     51         "filesystem:*.oga",
     52         "filesystem:*.OGA",
     53         "filesystem:*.ogm",
     54         "filesystem:*.OGM",
     55         "filesystem:*.ogv",
     56         "filesystem:*.OGV",
     57         "filesystem:*.ogx",
     58         "filesystem:*.OGX",
     59         "filesystem:*.wav",
     60         "filesystem:*.WAV",
     61         "filesystem:*.mp3",
     62         "filesystem:*.MP3",
     63         "filesystem:*.m4a",
     64         "filesystem:*.M4A"
     65       ]
     66     },
     67     {
     68       "id": "enqueue",
     69       "default_title": "__MSG_ENQUEUE_MEDIA__",
     70       "default_icon": "images/icon_add_to_queue_16x16.png",
     71       "file_filters": [
     72         "filesystem:*.webm",
     73         "filesystem:*.WEBM",
     74         "filesystem:*.mp4",
     75         "filesystem:*.MP4",
     76         "filesystem:*.m4v",
     77         "filesystem:*.M4V",
     78         "filesystem:*.mov",
     79         "filesystem:*.MOV",
     80         "filesystem:*.ogg",
     81         "filesystem:*.OGG",
     82         "filesystem:*.oga",
     83         "filesystem:*.OGA",
     84         "filesystem:*.ogm",
     85         "filesystem:*.OGM",
     86         "filesystem:*.ogv",
     87         "filesystem:*.OGV",
     88         "filesystem:*.ogx",
     89         "filesystem:*.OGX",
     90         "filesystem:*.wav",
     91         "filesystem:*.WAV",
     92         "filesystem:*.mp3",
     93         "filesystem:*.MP3",
     94         "filesystem:*.m4a",
     95         "filesystem:*.M4A"
     96       ]
     97     }
     98   ]
     99 }
    100