Health Wire

Health Wire

Auto Print PDFs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Health Wire",
  "version": "1.0",
  "description": "Auto Print PDFs",
  "manifest_version": 2,
  "permissions": [
    "https://www.healthwire.pk/*",
    "https://staging.healthwire.pk/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/autoprint.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "web_accessible_resources": [
    "autoprint.js"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  }
}