foreUP Printer Extension

foreUP Printer Extension

App to print to star printers within the foreUP POS.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "foreUP Printer Extension",
  "description": "App to print to star printers within the foreUP POS.",
  "version": "2.0.5",
  "manifest_version": 2,
  "externally_connectable": {
    "matches": [
      "*://*.foreupsoftware.com/*",
      "http://localhost/*"
    ]
  },
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_title": "foreUP Printer Extension",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://localhost/*",
        "*://*.foreupsoftware.com/*",
        "*://foreupsoftware.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}