Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Side by Side Diff: chrome/test/data/extensions/api_test/filesystem_handler/manifest.json

Issue 9395077: [filebrowser] Introduce View action for supported file types (e.g. pdf). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698