| OLD | NEW |
| 1 // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai | 1 // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai |
| 2 "manifest_version": 2, | 2 "manifest_version": 2, |
| 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn
SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye
/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", | 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn
SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye
/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", |
| 4 "name": "Chrome PDF Viewer", | 4 "name": "Chrome PDF Viewer", |
| 5 "version": "1", | 5 "version": "1", |
| 6 "description": "Chrome PDF Viewer", | 6 "description": "Chrome PDF Viewer", |
| 7 "offline_enabled": true, | 7 "offline_enabled": true, |
| 8 "incognito": "split", | 8 "incognito": "split", |
| 9 "permissions": [ | 9 "permissions": [ |
| 10 "file://*/", | 10 "<all_urls>" |
| 11 "ftp://*/", | |
| 12 "http://*/", | |
| 13 "https://*/", | |
| 14 "chrome://*/" | |
| 15 ], | 11 ], |
| 16 "mime_types": [ | 12 "mime_types": [ |
| 17 "application/pdf" | 13 "application/pdf" |
| 18 ], | 14 ], |
| 19 "content_security_policy": "script-src 'self' chrome://resources; object-src *
; plugin-types application/x-google-chrome-pdf", | 15 "content_security_policy": "script-src 'self' chrome://resources; object-src *
; plugin-types application/x-google-chrome-pdf", |
| 20 // This is to work-around an issue where this extension is not granted | 16 // This is to work-around an issue where this extension is not granted |
| 21 // permission to access chrome://resources when iframed for print preview. | 17 // permission to access chrome://resources when iframed for print preview. |
| 22 // See https://crbug.com/444752. | 18 // See https://crbug.com/444752. |
| 23 "content_scripts": [ | 19 "content_scripts": [ |
| 24 { | 20 { |
| 25 "matches": ["chrome://print/*"], | 21 "matches": ["chrome://print/*"], |
| 26 "js": ["content_script.js"] | 22 "js": ["content_script.js"] |
| 27 } | 23 } |
| 28 ] | 24 ] |
| OLD | NEW |