| 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 "description": "Tests of chrome.fileSystem.* methods", | 6 "description": "Tests of chrome.fileSystem.* methods", |
| 6 "background_page": "background.html", | 7 "background_page": "background.html", |
| 7 "file_browser_handlers": [ | 8 "file_browser_handlers": [ |
| 8 { | 9 { |
| 9 "id" : "TextAction", | 10 "id" : "TextAction", |
| 10 "default_title" : "txt file action.", | 11 "default_title" : "txt file action.", |
| 11 "default_icon" : "icon.png", | 12 "default_icon" : "icon.png", |
| 12 "file_filters" : [ "filesystem:*.tXt", "filesystem:*.text" ] | 13 "file_filters" : [ "filesystem:*.tXt", "filesystem:*.text" ] |
| 13 }, | 14 }, |
| 14 { | 15 { |
| 15 "id" : "JpegAction", | 16 "id" : "JpegAction", |
| 16 "default_title" : "jpg file action", | 17 "default_title" : "jpg file action", |
| 17 "default_icon" : "icon.png", | 18 "default_icon" : "icon.png", |
| 18 "file_filters" : [ "filesystem:*.jpg", "filesystem:*.jpeg" ] | 19 "file_filters" : [ "filesystem:*.jpg", "filesystem:*.jpeg" ] |
| 19 }, | 20 }, |
| 20 { | 21 { |
| 21 "id" : "BaseAction", | 22 "id" : "BaseAction", |
| 22 "default_title" : "Base action", | 23 "default_title" : "Base action", |
| 23 "default_icon" : "icon.png", | 24 "default_icon" : "icon.png", |
| 24 "file_filters" : [ "filesystem:*", "filesystem:*.*" ] | 25 "file_filters" : [ "filesystem:*", "filesystem:*.*" ] |
| 25 } | 26 } |
| 26 ], | 27 ], |
| 27 "permissions": [ | 28 "permissions": [ |
| 28 "fileBrowserHandler", | 29 "fileBrowserHandler", |
| 29 "tabs", | 30 "tabs", |
| 30 "unlimitedStorage" | 31 "unlimitedStorage" |
| 31 ] | 32 ] |
| 32 } | 33 } |
| OLD | NEW |