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

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

Issue 15703018: Improved Quickoffice editing about:flag. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Correcting manifest files for inbuilt extension. Created 7 years, 6 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 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Icb JEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFwZ 2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB",
3
4 "background": {
5 "persistent": false,
6 "page": "views/background/backgroundPage.html"
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 "manifest_version": 2,
30 "mime_types": [
31 "application/msword",
32 "application/vnd.ms-word",
33 "application/vnd.msword",
34 "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
35 "application/vnd.wordprocessing-openxml",
36 "application/vnd.ces-quickword",
37 "application/vnd.ms-word.document.macroEnabled.12",
38 "application/vnd.ms-word.document.12",
39 "application/mspowerpoint",
40 "application/vnd.ms-powerpoint",
41 "application/vnd.openxmlformats-officedocument.presentationml.presentation",
42 "application/vnd.ces-quickpoint",
43 "application/vnd.presentation-openxml",
44 "application/vnd.presentation-openxmlm",
45 "application/vnd.ms-powerpoint.presentation.macroEnabled.12",
46 "application/msexcel",
47 "application/vnd.ms-excel",
48 "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
49 "application/vnd.ces-quicksheet",
50 "application/vnd.spreadsheet-openxml",
51 "application/vnd.ms-excel.sheet.macroEnabled.12"],
52 "name": "Quickoffice (Experimental)",
53 "offline_enabled": true,
54 "permissions": [
55 "fileBrowserHandler",
56 "fileSystem",
57 "fileSystem.write",
58 "metricsPrivate",
59 "streamsPrivate",
60 "unlimitedStorage"],
61 "version": "2.9.2.14",
62 "web_accessible_resources": [
63 "views/qowt.html"]
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698