OLD | NEW |
1 { | 1 { |
2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80
Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW
eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==", | 2 "key": "MIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQChptAQ0n4R56N03nWQ1ogR7DVRBjGo80
Vw6G9KLjzZv44D8rq5Q5IkeQrtKgWyZfXevlsCe3LaLo18rcz8iZx6lK2xhLdUR+ORjsjuBfdEL5a5cW
eRTSxf75AcqndQsmpwMBdrMTCZ8jQNusUI+XlrihLNNJuI5TM4vNINI5bYFQIBIw==", |
3 "name": "ChromeOS file system intent hanlder extension", | 3 "name": "ChromeOS file system intent hanlder extension", |
4 "version": "0.1", | 4 "version": "0.1", |
5 "manifest_version": 2, | 5 "manifest_version": 2, |
6 "description": "Tests of chrome.fileSystem.* methods", | 6 "description": "Tests of chrome.fileSystem.* methods", |
7 "background": { | 7 "background": { |
8 "scripts": ["tab.js"] | 8 "scripts": ["tab.js"] |
9 }, | 9 }, |
10 "file_browser_handlers": [ | 10 "file_browser_handlers": [ |
11 { | 11 { |
12 "id" : "TextAction", | 12 "id" : "AbcAction", |
13 "default_title" : "txt file action.", | 13 "default_title" : "abc file action.", |
14 "default_icon" : "icon.png", | 14 "default_icon" : "icon.png", |
15 "file_filters" : [ "filesystem:*.tXt", "filesystem:*.text" ] | 15 "file_filters" : [ "filesystem:*.aBc", "filesystem:*.abcfile" ] |
16 }, | 16 }, |
17 { | 17 { |
18 "id" : "JpegAction", | 18 "id" : "123Action", |
19 "default_title" : "jpg file action", | 19 "default_title" : "123 file action", |
20 "default_icon" : "icon.png", | 20 "default_icon" : "icon.png", |
21 "file_filters" : [ "filesystem:*.jpg", "filesystem:*.jpeg" ] | 21 "file_filters" : [ "filesystem:*.123", "filesystem:*.1234" ] |
22 }, | 22 }, |
23 { | 23 { |
24 "id" : "BaseAction", | 24 "id" : "BaseAction", |
25 "default_title" : "Base action", | 25 "default_title" : "Base action", |
26 "default_icon" : "icon.png", | 26 "default_icon" : "icon.png", |
27 "file_filters" : [ "filesystem:*", "filesystem:*.*" ] | 27 "file_filters" : [ "filesystem:*", "filesystem:*.*" ] |
28 } | 28 } |
29 ], | 29 ], |
30 "permissions": [ | 30 "permissions": [ |
31 "fileBrowserHandler", | 31 "fileBrowserHandler", |
32 "tabs", | 32 "tabs", |
33 "unlimitedStorage" | 33 "unlimitedStorage" |
34 ] | 34 ] |
35 } | 35 } |
OLD | NEW |