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

Side by Side Diff: chrome/browser/resources/quick_office/manifest_experimental.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 "scripts/configs/experimentalFeatures.js"
7 ]
8 },
9 "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'",
10 "default_locale": "en",
11 "description": "Chrome Office Viewer (Beta)",
12 "file_browser_handlers": [{
13 "default_title": "Chrome Office Viewer (Beta)",
14 "file_filters": [
15 "filesystem:*.doc",
16 "filesystem:*.docx",
17 "filesystem:*.docm",
18 "filesystem:*.ppt",
19 "filesystem:*.pptx",
20 "filesystem:*.pptm",
21 "filesystem:*.xls",
22 "filesystem:*.xlsx"],
23 "id": "qoview"
24 }],
25 "icons": {
26 "16": "img/icon_16.png",
27 "128": "img/icon_128.png"
28 },
29 "incognito": "split",
30 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Icb JEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFwZ 2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB",
31 "manifest_version": 2,
32 "mime_types": [
33 "application/msword",
34 "application/vnd.ms-word",
35 "application/vnd.msword",
36 "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
37 "application/vnd.wordprocessing-openxml",
38 "application/vnd.ces-quickword",
39 "application/vnd.ms-word.document.macroEnabled.12",
40 "application/vnd.ms-word.document.12",
41 "application/mspowerpoint",
42 "application/vnd.ms-powerpoint",
43 "application/vnd.openxmlformats-officedocument.presentationml.presentation",
44 "application/vnd.ces-quickpoint",
45 "application/vnd.presentation-openxml",
46 "application/vnd.presentation-openxmlm",
47 "application/vnd.ms-powerpoint.presentation.macroEnabled.12",
48 "application/msexcel",
49 "application/vnd.ms-excel",
50 "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
51 "application/vnd.ces-quicksheet",
52 "application/vnd.spreadsheet-openxml",
53 "application/vnd.ms-excel.sheet.macroEnabled.12"],
54 "name": "Chrome Office Viewer (Beta)",
55 "offline_enabled": true,
56 "permissions": [
57 "fileBrowserHandler",
58 "fileSystem",
59 "fileSystem.write",
60 "metricsPrivate",
61 "streamsPrivate",
62 "unlimitedStorage"],
63 "platforms": [
64 {
65 "nacl_arch": "x86-32",
66 "sub_package_path": "_platform_specific/x86_32/"
67 },
68 {
69 "nacl_arch": "x86-64",
70 "sub_package_path": "_platform_specific/x86_64/"
71 },
72 {
73 "nacl_arch": "arm",
74 "sub_package_path": "_platform_specific/arm/"
75 }
76 ],
77 "version": "2.9.3.9",
78 "web_accessible_resources": [
79 "views/qowt.html"]
80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698