Check Printing Software

Check Printing Software

Check Printing Software

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Check Printing Software",
  "version": "4.0",
  "description": "Check Printing Software",
  "icons": {
    "36": "icons/icon_36x36.png",
    "48": "icons/icon_48x48.png",
    "72": "icons/icon_72x72.png",
    "128": "icons/icon_128x128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "",
    "default_icon": "icons/icon_128x128.png",
    "default_popup": "popup/content.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "main.js",
        "main-auto.js"
      ],
      "all_frames": true
    }
  ]
}