OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 "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.
| |
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfn SjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/Kok6E6v6V3vCLGsOpQAuuNVye /3QxzIldzG/jQAdWZiyXReRVapOhZtLjGfywCvlWq7Sl/e3sbc0vWybSDI2QIDAQAB", | |
4 "name": "Chrome PDF Viewer", | |
5 "version": "1", | |
6 "description": "Chrome PDF Viewer", | |
7 "offline_enabled": true, | |
8 "permissions": [ | |
9 "file://*/", | |
10 "http://*/", | |
11 "https://*/", | |
12 "streamsPrivate"], | |
tapted
2013/12/02 04:17:19
nit: closing `],` on new line
raymes
2013/12/04 04:54:49
Done.
| |
13 "background": { | |
14 "scripts": ["background.js"], | |
15 "transient": true, | |
16 "persistent": false | |
17 }, | |
18 "offline_enabled": true, | |
19 "mime_types": [ | |
20 "application/pdf" | |
21 ], | |
22 "web_accessible_resources": [ | |
23 "pdf.html" | |
24 ] | |
25 } | |
OLD | NEW |