manifest.json revision a02191e04bc25c4935f804f2c080ae28663d096d
1{
2  // chrome-extension://mhjfbmdgcfjbbpaeojofohoefgiehjai
3  "manifest_version": 2,
4  "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDN6hM0rsDYGbzQPQfOygqlRtQgKUXMfnSjhIBL7LnReAVBEd7ZmKtyN2qmSasMl4HZpMhVe2rPWVVwBDl6iyNE/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    "ftp://*/",
12    "http://*/",
13    "https://*/",
14    "chrome://*/",
15    "streamsPrivate"
16  ],
17  "background": {
18    "scripts": ["background.js"],
19    "transient": true,
20    "persistent": false
21  },
22  "mime_types": [
23    "application/pdf"
24  ],
25  "web_accessible_resources": [
26    "index.html"
27  ]
28}
29