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

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

Issue 187983003: Switch Quickoffice to new internal repo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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
« no previous file with comments | « chrome/browser/resources/quick_office/OWNERS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 "background": {
3 "persistent": false,
4 "scripts": [
5 "scripts/configs/requirejsConfig.js",
6 "scripts/third_party/requireJs/require.js",
7 "scripts/configs/experimentalFeatures.js",
8 "scripts/background/backgroundMain.js"
9 ]
10 },
11 "content_security_policy": "default-src 'self'; connect-src https://www.google -analytics.com/ blob: chrome-extension:; style-src 'self' 'unsafe-inline' chrome -extension:; img-src 'self' blob: data:; frame-src chrome-extension:; script-src 'self'",
12 "default_locale": "en",
13 "description": "Quickoffice (Beta)",
14 "file_browser_handlers": [
15 {
16 "default_title": "Quickoffice (Beta)",
17 "file_filters": [
18 "filesystem:*.doc",
19 "filesystem:*.docx",
20 "filesystem:*.docm",
21 "filesystem:*.ppt",
22 "filesystem:*.pptx",
23 "filesystem:*.pptm",
24 "filesystem:*.xls",
25 "filesystem:*.xlsx"
26 ],
27 "id": "qoview"
28 }
29 ],
30 "icons": {
31 "16": "img/icon_16.png",
32 "128": "img/icon_128.png"
33 },
34 "incognito": "split",
35 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Icb JEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFwZ 2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB",
36 "manifest_version": 2,
37 "mime_types": [
38 "application/msword",
39 "application/vnd.ms-word",
40 "application/vnd.msword",
41 "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
42 "application/vnd.wordprocessing-openxml",
43 "application/vnd.ces-quickword",
44 "application/vnd.ms-word.document.macroEnabled.12",
45 "application/vnd.ms-word.document.12",
46 "application/mspowerpoint",
47 "application/vnd.ms-powerpoint",
48 "application/vnd.openxmlformats-officedocument.presentationml.presentation",
49 "application/vnd.ces-quickpoint",
50 "application/vnd.presentation-openxml",
51 "application/vnd.presentation-openxmlm",
52 "application/vnd.ms-powerpoint.presentation.macroEnabled.12",
53 "application/msexcel",
54 "application/vnd.ms-excel",
55 "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
56 "application/vnd.ces-quicksheet",
57 "application/vnd.spreadsheet-openxml",
58 "application/vnd.ms-excel.sheet.macroEnabled.12"
59 ],
60 "name": "Quickoffice (Beta)",
61 "offline_enabled": true,
62 "permissions": [
63 "clipboardRead",
64 "clipboardWrite",
65 "fileBrowserHandler",
66 "fileSystem",
67 "fileSystem.write",
68 "https://www.google-analytics.com/",
69 "metricsPrivate",
70 "storage",
71 "streamsPrivate",
72 "unlimitedStorage"
73 ],
74 "platforms": [
75 {
76 "nacl_arch": "x86-32",
77 "sub_package_path": "_platform_specific/x86_32/"
78 },
79 {
80 "nacl_arch": "x86-64",
81 "sub_package_path": "_platform_specific/x86_64/"
82 },
83 {
84 "nacl_arch": "arm",
85 "sub_package_path": "_platform_specific/arm/"
86 }
87 ],
88 "version": "34.99.2070.1",
89 "web_accessible_resources": [
90 "views/qowt.html"
91 ]
92 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/quick_office/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698