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