Chromium Code Reviews| Index: chrome/browser/resources/pdf/manifest.json |
| diff --git a/chrome/browser/resources/pdf/manifest.json b/chrome/browser/resources/pdf/manifest.json |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2eff7b663d366583415e544ff791a12d6672b194 |
| --- /dev/null |
| +++ b/chrome/browser/resources/pdf/manifest.json |
| @@ -0,0 +1,25 @@ |
| +{ |
| + "manifest_version": 2, |
|
tapted
2013/12/02 04:17:19
nit: maybe put the extension id in a comment as we
raymes
2013/12/04 04:54:49
Done.
|
| + "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfnSjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye/3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", |
| + "name": "Chrome PDF Viewer", |
| + "version": "1", |
| + "description": "Chrome PDF Viewer", |
| + "offline_enabled": true, |
| + "permissions": [ |
| + "file://*/", |
| + "http://*/", |
| + "https://*/", |
| + "streamsPrivate"], |
|
tapted
2013/12/02 04:17:19
nit: closing `],` on new line
raymes
2013/12/04 04:54:49
Done.
|
| + "background": { |
| + "scripts": ["background.js"], |
| + "transient": true, |
| + "persistent": false |
| + }, |
| + "offline_enabled": true, |
| + "mime_types": [ |
| + "application/pdf" |
| + ], |
| + "web_accessible_resources": [ |
| + "pdf.html" |
| + ] |
| +} |