Innovative PDF Viewer - display PDF files in the browser with PDF.js (by Mozilla Labs). Send PDFs to any PDF viewer.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "__MSG_name__",
"background": {
"service_worker": "worker.js"
},
"action": {},
"default_locale": "en",
"description": "__MSG_description__",
"file_browser_handlers": [
{
"default_title": "PDF Viewer",
"file_filters": [
"filesystem:*.pdf"
],
"id": "open-as-pdf"
}
],
"icons": {
"32": "icons/icon32.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png"
},
"manifest_version": 3,
"options_ui": {
"page": "/bg/main/opcii.html",
"open_in_tab": false
},
"host_permissions": [
"https://*/",
"http://*/"
],
"permissions": [
"webRequest",
"webNavigation",
"storage",
"contextMenus"
],
"version": "1.0.2",
"web_accessible_resources": [
{
"resources": [
"/bg/helper/web/viewer.html"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}