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

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

Issue 22451003: Enable Quickoffice Editor by default. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 4 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
OLDNEW
(Empty)
1 {
2 "background": {
3 "persistent": false,
4 "scripts": [
5 "scripts/background/register.js"
6 ]
7 },
8 "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'",
9 "default_locale": "en",
10 "description": "Chrome Office Viewer (Beta)",
11 "file_browser_handlers": [{
12 "default_title": "Chrome Office Viewer (Beta)",
13 "file_filters": [
14 "filesystem:*.doc",
15 "filesystem:*.docx",
16 "filesystem:*.docm",
17 "filesystem:*.ppt",
18 "filesystem:*.pptx",
19 "filesystem:*.pptm",
20 "filesystem:*.xls",
21 "filesystem:*.xlsx"],
22 "id": "qoview"
23 }],
24 "icons": {
25 "16": "img/icon_16.png",
26 "128": "img/icon_128.png"
27 },
28 "incognito": "split",
29 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Icb JEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFwZ 2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB",
30 "manifest_version": 2,
31 "mime_types": [
32 "application/msword",
33 "application/vnd.ms-word",
34 "application/vnd.msword",
35 "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
36 "application/vnd.wordprocessing-openxml",
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 "name": "Chrome Office Viewer (Beta)",
54 "offline_enabled": true,
55 "permissions": [
56 "fileBrowserHandler",
57 "fileSystem",
58 "fileSystem.write",
59 "metricsPrivate",
60 "streamsPrivate",
61 "unlimitedStorage"],
62 "platforms": [
63 {
64 "nacl_arch": "x86-32",
65 "sub_package_path": "_platform_specific/x86_32/"
66 },
67 {
68 "nacl_arch": "x86-64",
69 "sub_package_path": "_platform_specific/x86_64/"
70 },
71 {
72 "nacl_arch": "arm",
73 "sub_package_path": "_platform_specific/arm/"
74 }
75 ],
76 "version": "2.9.3.9",
77 "web_accessible_resources": [
78 "views/qowt.html"]
79 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/component_loader.cc ('k') | chrome/browser/resources/quick_office/manifest_editor.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698