OLD | NEW |
---|---|
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 "transient": true, |
Finnur
2013/04/03 11:02:11
Transient isn't a manifest keyword as far as I can
Dmitry Polukhin
2013/04/03 12:06:09
Done.
| |
4 "persistent": false, | 14 "persistent": false, |
5 "transient": true | 15 "page": "views/background/backgroundPage.html" |
6 }, | 16 }, |
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 "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'", |
8 "default_locale": "en", | 18 "default_locale": "en", |
9 "description": "Chrome Office Viewer", | 19 "web_accessible_resources": [ |
10 "file_browser_handlers": [ { | 20 "views/qowt.html"], |
11 "default_title": "Chrome Office Viewer", | 21 "file_browser_handlers": [{ |
12 "file_filters": [ "filesystem:*.doc", "filesystem:*.docx", "filesystem:*.pp t", "filesystem:*.pptx", "filesystem:*.xls", "filesystem:*.xlsx" ], | 22 "id": "qoview", |
13 "id": "qoview" | 23 "default_title": "Chrome Office Viewer", |
14 } ], | 24 "file_filters": [ |
15 "icons": { | 25 "filesystem:*.doc", |
16 "128": "img/icon_128.png", | 26 "filesystem:*.docx", |
17 "16": "img/icon_16.png" | 27 "filesystem:*.ppt", |
18 }, | 28 "filesystem:*.pptx", |
19 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Ic bJEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFw Z2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB", | 29 "filesystem:*.xls", |
20 "manifest_version": 2, | 30 "filesystem:*.xlsx"] |
21 "minimum_chrome_version": "25", | 31 }], |
22 "name": "Chrome Office Viewer", | 32 "mime_types": [ |
23 "offline_enabled": true, | 33 "application/msword", |
24 "permissions": [ "metricsPrivate", "unlimitedStorage", "fileBrowserHandler" ] , | 34 "application/vnd.ms-word", |
25 "update_url": "https://clients2.google.com/service/update2/crx", | 35 "application/vnd.msword", |
26 "version": "2.8.1.25", | 36 "application/vnd.openxmlformats-officedocument.wordprocessingml.document", |
27 "web_accessible_resources": [ "views/qowt.html" ] | 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 "offline_enabled": true, | |
55 "permissions": [ | |
56 "metricsPrivate", | |
57 "unlimitedStorage", | |
58 "fileBrowserHandler", | |
59 "streamsPrivate"] | |
Finnur
2013/04/03 11:02:11
I don't particularly like the random re-ordering o
Dmitry Polukhin
2013/04/03 12:06:09
I'm not an original author of the manifest file so
| |
28 } | 60 } |
OLD | NEW |