PDF Merge - Download and View

PDF Merge - Download and View

Merge PDF files, view them in a browser and download.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1",
  "default_locale": "en",
  "icons": {
    "64": "64.png",
    "128": "128.png"
  },
  "browser_action": {
    "default_title": "__MSG_name__",
    "default_icon": {
      "64": "64.png",
      "128": "128.png"
    }
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "downloads"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./inject.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}