05bca47b11
add uppercase case extension recognition for Chrome pdf.js
19 lines
411 B
JSON
19 lines
411 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "PDF Viewer",
|
|
"version": "PDFJSSCRIPT_VERSION",
|
|
"description": "Uses HTML5 to display PDF files directly in Chrome.",
|
|
"permissions": [
|
|
"webRequest", "webRequestBlocking",
|
|
"http://*/*.pdf",
|
|
"https://*/*.pdf",
|
|
"file:///*/*.pdf",
|
|
"http://*/*.PDF",
|
|
"https://*/*.PDF",
|
|
"file://*/*.PDF"
|
|
],
|
|
"background": {
|
|
"page": "pdfHandler.html"
|
|
}
|
|
}
|