Zoco PDF Viewer

Zoco PDF Viewer

Innovative PDF Viewer - display PDF files in the browser with PDF.js (by Mozilla Labs). Send PDFs to any PDF viewer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' chrome-extension://bfmifhhaggbpcmaglaceechkhecllgok; object-src 'self'",
  "browser_action": {},
  "default_locale": "en",
  "description": "__MSG_description__",
  "file_browser_handlers": [
    {
      "default_title": "PDF Viewer",
      "file_filters": [
        "filesystem:*.pdf"
      ],
      "id": "handle-pdf-file"
    }
  ],
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "content_scripts": [
    {
      "css": [
        "app/helper/web/shareModal.css"
      ],
      "js": [
        "app/helper/web/shareModal.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "manifest_version": 2,
  "options_ui": {
    "page": "app/main/options.html",
    "css": [
      "app/helper/web/shareModal.css"
    ],
    "open_in_tab": false
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "webNavigation",
    "storage",
    "contextMenus"
  ],
  "version": "1.7.1",
  "web_accessible_resources": [
    "app/helper/*"
  ]
}