blob: a2033143ab3441199096ddd506f1a7699ea9b43b [file] [log] [blame]
// chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai
"manifest_version": 2,
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfnSjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB",
"name": "Chrome PDF Viewer",
"version": "1",
"description": "Chrome PDF Viewer",
"offline_enabled": true,
"incognito": "split",
"permissions": [
"file://*/",
"ftp://*/",
"http://*/",
"https://*/",
"chrome://*/",
"streamsPrivate"
],
"background": {
"scripts": ["background.js"],
"transient": true,
"persistent": false
},
"mime_types": [
"application/pdf"
],
"content_security_policy": "script-src 'self' chrome://resources; object-src *; plugin-types application/x-google-chrome-pdf",
// This is to work-around an issue where this extension is not granted
// permission to access chrome://resources when iframed for print preview.
// See https://crbug.com/444752.
"content_scripts": [
{
"matches": ["chrome://print/*"],
"js": ["content_script.js"]
}
]