pdf.js/extensions/chrome/manifest.json
Aluísio Augusto Silva Gonçalves d18f8d11bc Add icons to the Chrome extensions
2013-02-16 23:15:01 -03:00

24 lines
502 B
JSON

{
"manifest_version": 2,
"name": "PDF Viewer",
"version": "PDFJSSCRIPT_VERSION",
"description": "Uses HTML5 to display PDF files directly in Chrome.",
"icons": {
"128": "icon128.png",
"48": "icon48.png",
"16": "icon16.png"
},
"permissions": [
"webRequest", "webRequestBlocking",
"http://*/*.pdf",
"https://*/*.pdf",
"file:///*/*.pdf",
"http://*/*.PDF",
"https://*/*.PDF",
"file://*/*.PDF"
],
"background": {
"page": "pdfHandler.html"
}
}