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

Side by Side Diff: chrome/browser/resources/quick_office/manifest.json

Issue 13452002: Update manifest file for Quickoffice component extension (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed transient Created 7 years, 8 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 "manifest_version": 2,
3 "version": "2.8.6.24",
4 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Icb JEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFwZ 2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB",
5 "name": "Chrome Office Viewer (beta)",
6 "description": "Chrome Office Viewer (beta)",
7 "minimum_chrome_version": "27.0.1453.6",
8 "icons": {
9 "16": "img/icon_16.png",
10 "128": "img/icon_128.png"
11 },
2 "background": { 12 "background": {
3 "page": "views/background/backgroundPage.html", 13 "persistent": false,
4 "persistent": false, 14 "page": "views/background/backgroundPage.html"
5 "transient": true 15 },
6 }, 16 "content_security_policy": "default-src 'self'; connect-src blob: chrome-exten sion:; style-src 'self' 'unsafe-inline' chrome-extension:; img-src 'self' blob: data:; frame-src chrome-extension:; script-src 'self'",
7 "content_security_policy": "default-src 'self'; style-src 'self' 'unsafe-inli ne' chrome-extension:; img-src 'self' blob: data:; frame-src chrome-extension:; script-src 'self'", 17 "default_locale": "en",
8 "default_locale": "en", 18 "web_accessible_resources": [
9 "description": "Chrome Office Viewer", 19 "views/qowt.html"],
10 "file_browser_handlers": [ { 20 "file_browser_handlers": [{
11 "default_title": "Chrome Office Viewer", 21 "id": "qoview",
12 "file_filters": [ "filesystem:*.doc", "filesystem:*.docx", "filesystem:*.pp t", "filesystem:*.pptx", "filesystem:*.xls", "filesystem:*.xlsx" ], 22 "default_title": "Chrome Office Viewer",
13 "id": "qoview" 23 "file_filters": [
14 } ], 24 "filesystem:*.doc",
15 "icons": { 25 "filesystem:*.docx",
16 "128": "img/icon_128.png", 26 "filesystem:*.ppt",
17 "16": "img/icon_16.png" 27 "filesystem:*.pptx",
18 }, 28 "filesystem:*.xls",
19 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Ic bJEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFw Z2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB", 29 "filesystem:*.xlsx"]
20 "manifest_version": 2, 30 }],
21 "minimum_chrome_version": "25", 31 "mime_types": [
22 "name": "Chrome Office Viewer", 32 "application/msword",
23 "offline_enabled": true, 33 "application/vnd.ms-word",
24 "permissions": [ "metricsPrivate", "unlimitedStorage", "fileBrowserHandler" ] , 34 "application/vnd.msword",
25 "update_url": "https://clients2.google.com/service/update2/crx", 35 "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
26 "version": "2.8.1.25", 36 "application/vnd.wordprocessing-openxml",
27 "web_accessible_resources": [ "views/qowt.html" ] 37 "application/vnd.ces-quickword",
38 "application/vnd.ms-word.document.macroEnabled.12",
39 "application/vnd.ms-word.document.12",
40 "application/mspowerpoint",
41 "application/vnd.ms-powerpoint",
42 "application/vnd.openxmlformats-officedocument.presentationml.presentation",
43 "application/vnd.ces-quickpoint",
44 "application/vnd.presentation-openxml",
45 "application/vnd.presentation-openxmlm",
46 "application/vnd.ms-powerpoint.presentation.macroEnabled.12",
47 "application/msexcel",
48 "application/vnd.ms-excel",
49 "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
50 "application/vnd.ces-quicksheet",
51 "application/vnd.spreadsheet-openxml",
52 "application/vnd.ms-excel.sheet.macroEnabled.12"],
53 "offline_enabled": true,
54 "permissions": [
55 "metricsPrivate",
56 "unlimitedStorage",
57 "fileBrowserHandler",
58 "streamsPrivate"]
28 } 59 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/quick_office/OWNERS ('k') | chrome/common/extensions/mime_types_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698