| 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" : "AbcAction", | 12 "id" : "TestAction_aBc", |
| 13 "default_title" : "abc file action.", | 13 "default_title" : "abc file action.", |
| 14 "default_icon" : "icon.png", | 14 "default_icon" : "icon.png", |
| 15 "file_filters" : [ "filesystem:*.aBc", "filesystem:*.abcfile" ] | 15 "file_filters" : [ "filesystem:*.aBc", "filesystem:*.abcfile" ] |
| 16 }, | 16 }, |
| 17 { | 17 { |
| 18 "id" : "123Action", | 18 "id" : "123Action", |
| 19 "default_title" : "123 file action", | 19 "default_title" : "123 file action", |
| 20 "default_icon" : "icon.png", | 20 "default_icon" : "icon.png", |
| 21 "file_filters" : [ "filesystem:*.123", "filesystem:*.1234" ] | 21 "file_filters" : [ "filesystem:*.123", "filesystem:*.1234" ] |
| 22 }, | 22 }, |
| 23 { | 23 { |
| 24 "id" : "BaseAction", | 24 "id" : "TestAction_def", |
| 25 "default_title" : "Base action", | 25 "default_title" : "Read-only action", |
| 26 "default_icon" : "icon.png", | 26 "default_icon" : "icon.png", |
| 27 "file_filters" : [ "filesystem:*", "filesystem:*.*" ] | 27 "file_filters" : [ "filesystem:*.def" ], |
| 28 "file_access": [ "read" ] |
| 29 |
| 28 } | 30 } |
| 29 ], | 31 ], |
| 30 "permissions": [ | 32 "permissions": [ |
| 31 "fileBrowserHandler", | 33 "fileBrowserHandler", |
| 32 "tabs", | 34 "tabs", |
| 33 "unlimitedStorage" | 35 "unlimitedStorage" |
| 34 ] | 36 ] |
| 35 } | 37 } |
| OLD | NEW |