PDF 4x6 Printer

PDF 4x6 Printer

Provides the ability to print PDF on 4x6 paper from Chrome browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PDF 4x6 Printer",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Provides the ability to print PDF on 4x6 paper from Chrome browser.",
  "browser_action": {
    "default_title": "Print this PDF",
    "default_icon": "print_16x16.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "nativeMessaging",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}