2011-10-18 19:43:43 +02:00
|
|
|
{
|
2012-09-05 22:52:17 -07:00
|
|
|
"manifest_version": 2,
|
2012-09-06 08:33:07 -07:00
|
|
|
"name": "PDF Viewer",
|
|
|
|
"version": "PDFJSSCRIPT_VERSION",
|
|
|
|
"description": "Uses HTML5 to display PDF files directly in Chrome.",
|
2013-02-16 23:15:01 -03:00
|
|
|
"icons": {
|
|
|
|
"128": "icon128.png",
|
|
|
|
"48": "icon48.png",
|
|
|
|
"16": "icon16.png"
|
|
|
|
},
|
2011-10-18 19:43:43 +02:00
|
|
|
"permissions": [
|
2012-02-13 20:23:31 +01:00
|
|
|
"webRequest", "webRequestBlocking",
|
2013-04-04 00:28:45 +02:00
|
|
|
"<all_urls>",
|
|
|
|
"tabs"
|
2011-10-18 19:43:43 +02:00
|
|
|
],
|
2013-04-04 00:28:45 +02:00
|
|
|
"content_scripts": [{
|
|
|
|
"matches": [
|
|
|
|
"*://*/*.pdf*",
|
|
|
|
"*://*/*.PDF*"
|
|
|
|
],
|
|
|
|
"css": ["hide-xhtml-error.css"]
|
|
|
|
}],
|
2012-09-05 22:52:17 -07:00
|
|
|
"background": {
|
|
|
|
"page": "pdfHandler.html"
|
2013-04-04 00:28:45 +02:00
|
|
|
},
|
|
|
|
"web_accessible_resources": [
|
2013-04-01 16:05:20 +02:00
|
|
|
"patch-worker.js",
|
2013-04-04 00:28:45 +02:00
|
|
|
"content/*"
|
|
|
|
]
|
2011-10-18 19:43:43 +02:00
|
|
|
}
|