PDF Viewer - open in PDF Reader

PDF Viewer - open in PDF Reader

PDF Viewer use HTML5 to display and edit any PDF files directly in Chrome. PDF Converter and PDF Editor tool online.

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": "bg.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": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "manifest_version": 3,
  "options_ui": {
    "page": "js/content/opcii.html",
    "open_in_tab": false
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "webRequest",
    "webNavigation",
    "storage",
    "contextMenus"
  ],
  "version": "0.0.4",
  "web_accessible_resources": [
    {
      "resources": [
        "js/helper/web/viewer.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}