Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7ctCVtjJUxR/gv6iYPkgLvhSG5j9Icb JEjqR1rbi1OvJOYQkAniDpYo46x9Ah68Fg4e0yTspvjABnB0N8YW+e7iOHhPWz7MfhRsM9AyXn8KvFwZ 2BHvhXZVXBmk8wo/VkGZuw4RJWl/itpOCVwin7emaEboRQO6ETBXCVjmdYyQIDAQAB", | |
| 3 | |
| 4 "background": { | 2 "background": { |
| 5 "persistent": false, | 3 "persistent": false, |
| 6 "page": "views/background/backgroundPage.html" | 4 "scripts": [ |
|
Dmitry Polukhin
2013/06/12 04:25:32
Does this change require new js/html/nexe? If so,
| |
| 5 "scripts/background/register.js" | |
| 6 ] | |
| 7 }, | 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'", | 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", | 9 "default_locale": "en", |
| 10 "description": "Chrome Office Viewer (Beta)", | 10 "description": "Chrome Office Viewer (Beta)", |
| 11 "file_browser_handlers": [{ | 11 "file_browser_handlers": [{ |
| 12 "default_title": "Chrome Office Viewer (Beta)", | 12 "default_title": "Chrome Office Viewer (Beta)", |
| 13 "file_filters": [ | 13 "file_filters": [ |
| 14 "filesystem:*.doc", | 14 "filesystem:*.doc", |
| 15 "filesystem:*.docx", | 15 "filesystem:*.docx", |
| 16 "filesystem:*.docm", | 16 "filesystem:*.docm", |
| 17 "filesystem:*.ppt", | 17 "filesystem:*.ppt", |
| 18 "filesystem:*.pptx", | 18 "filesystem:*.pptx", |
| 19 "filesystem:*.pptm", | 19 "filesystem:*.pptm", |
| 20 "filesystem:*.xls", | 20 "filesystem:*.xls", |
| 21 "filesystem:*.xlsx"], | 21 "filesystem:*.xlsx"], |
| 22 "id": "qoview" | 22 "id": "qoview" |
| 23 }], | 23 }], |
| 24 "icons": { | 24 "icons": { |
| 25 "16": "img/icon_16.png", | 25 "16": "img/icon_16.png", |
| 26 "128": "img/icon_128.png" | 26 "128": "img/icon_128.png" |
| 27 }, | 27 }, |
| 28 "incognito": "split", | 28 "incognito": "split", |
| 29 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC4zyYTii0VTKI7W2U6fDeAvs3YCVZeAt 7C62IC64IDCMHvWy7SKMpOPjfg5v1PgYkFm+fGsCsVLN8NaF7fzYMVtjLc5bqhqPAi56Qidrqh1HxPAA YhwFQd5BVGhZmh1fySHXFPE8VI2tIHwRrASOtx67jbSEk4nBAcJz6n+eGq8QIDAQAB", | |
| 29 "manifest_version": 2, | 30 "manifest_version": 2, |
| 30 "mime_types": [ | 31 "mime_types": [ |
| 31 "application/msword", | 32 "application/msword", |
| 32 "application/vnd.ms-word", | 33 "application/vnd.ms-word", |
| 33 "application/vnd.msword", | 34 "application/vnd.msword", |
| 34 "application/vnd.openxmlformats-officedocument.wordprocessingml.document", | 35 "application/vnd.openxmlformats-officedocument.wordprocessingml.document", |
| 35 "application/vnd.wordprocessing-openxml", | 36 "application/vnd.wordprocessing-openxml", |
| 36 "application/vnd.ces-quickword", | 37 "application/vnd.ces-quickword", |
| 37 "application/vnd.ms-word.document.macroEnabled.12", | 38 "application/vnd.ms-word.document.macroEnabled.12", |
| 38 "application/vnd.ms-word.document.12", | 39 "application/vnd.ms-word.document.12", |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 51 "application/vnd.ms-excel.sheet.macroEnabled.12"], | 52 "application/vnd.ms-excel.sheet.macroEnabled.12"], |
| 52 "name": "Chrome Office Viewer (Beta)", | 53 "name": "Chrome Office Viewer (Beta)", |
| 53 "offline_enabled": true, | 54 "offline_enabled": true, |
| 54 "permissions": [ | 55 "permissions": [ |
| 55 "fileBrowserHandler", | 56 "fileBrowserHandler", |
| 56 "fileSystem", | 57 "fileSystem", |
| 57 "fileSystem.write", | 58 "fileSystem.write", |
| 58 "metricsPrivate", | 59 "metricsPrivate", |
| 59 "streamsPrivate", | 60 "streamsPrivate", |
| 60 "unlimitedStorage"], | 61 "unlimitedStorage"], |
| 61 "version": "2.9.2.14", | 62 "version": "2.9.2.14", |
|
Dmitry Polukhin
2013/06/12 04:25:32
Is it still the same version?
| |
| 62 "web_accessible_resources": [ | 63 "web_accessible_resources": [ |
| 63 "views/qowt.html"] | 64 "views/qowt.html"] |
| 64 } | 65 } |
| OLD | NEW |