OLD | NEW |
(Empty) | |
| 1 { |
| 2 // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai |
| 3 "manifest_version": 2, |
| 4 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn
SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye
/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", |
| 5 "name": "Chrome PDF Viewer", |
| 6 "version": "1", |
| 7 "description": "Chrome PDF Viewer", |
| 8 "offline_enabled": true, |
| 9 "permissions": [ |
| 10 "file://*/", |
| 11 "http://*/", |
| 12 "https://*/", |
| 13 "streamsPrivate" |
| 14 ], |
| 15 "background": { |
| 16 "scripts": ["background.js"], |
| 17 "transient": true, |
| 18 "persistent": false |
| 19 }, |
| 20 "offline_enabled": true, |
| 21 "mime_types": [ |
| 22 "application/pdf" |
| 23 ], |
| 24 "web_accessible_resources": [ |
| 25 "pdf.html" |
| 26 ] |
| 27 } |
OLD | NEW |