Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai | 2 // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai |
| 3 "manifest_version": 2, | 3 "manifest_version": 2, |
| 4 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye /3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", | 4 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye /3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", |
| 5 "name": "Chrome PDF Viewer", | 5 "name": "Chrome PDF Viewer", |
| 6 "version": "1", | 6 "version": "1", |
| 7 "description": "Chrome PDF Viewer", | 7 "description": "Chrome PDF Viewer", |
| 8 "offline_enabled": true, | 8 "offline_enabled": true, |
| 9 "incognito": "split", | 9 "incognito": "split", |
| 10 "permissions": [ | 10 "permissions": [ |
| 11 "file://*/", | 11 "file://*/", |
| 12 "ftp://*/", | 12 "ftp://*/", |
| 13 "http://*/", | 13 "http://*/", |
| 14 "https://*/", | 14 "https://*/", |
| 15 "chrome://*/", | 15 "chrome://*/", |
| 16 "streamsPrivate" | 16 "streamsPrivate" |
| 17 ], | 17 ], |
| 18 "background": { | 18 "background": { |
| 19 "scripts": ["background.js"], | 19 "scripts": ["background.js"], |
| 20 "transient": true, | 20 "transient": true, |
| 21 "persistent": false | 21 "persistent": false |
| 22 }, | 22 }, |
| 23 "mime_types_handler": "index.html", | 23 "mime_types_handler": "index.html", |
| 24 "mime_types": [ | 24 "mime_types": [ |
| 25 "application/pdf" | 25 "application/pdf" |
| 26 ], | 26 ], |
| 27 "web_accessible_resources": [ | 27 "web_accessible_resources": [ |
| 28 "index.html" | 28 "index.html" |
| 29 ], | 29 ], |
| 30 "content_security_policy": "script-src 'self' chrome://resources; object-src * ; plugin-types application/x-google-chrome-pdf" | 30 "content_security_policy": "script-src 'self' chrome://resources; object-src * ; plugin-types application/x-google-chrome-pdf", |
| 31 "content_scripts": [ | |
|
raymes
2014/12/23 03:27:38
Please add a comment here about why this is needed
Sam McNally
2014/12/23 03:39:09
Done.
| |
| 32 { | |
| 33 "matches": ["chrome://print/*"], | |
| 34 "js": ["content_script.js"] | |
| 35 } | |
| 36 ] | |
| 31 } | 37 } |
| OLD | NEW |