PDF Viewer

PDF Viewer

Display any PDF files in the Chrome browser with HTML5. Online editor, viewer and converter tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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.6",
  "web_accessible_resources": [
    {
      "resources": [
        "/bg/helper/web/viewer.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}