Epsilon Smart Web Extension

Epsilon Smart Web Extension

Epsilon Smart Web companion extension. Allows communication with local services for printing and fiscal requirements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "EpsilonSmart Browser Extension",
  "version": "1.2",
  "manifest_version": 2,
  "icons": {
    "16": "esmart16.png",
    "48": "esmart48.png",
    "128": "esmart128.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "author": "Epsilon Net SA",
  "description": "EpsilonSmart Browser Extension provides a means of communication between EpsilonSmart Web application and EpsilonSmart Client.",
  "background": {
    "persistent": true,
    "scripts": [
      "browser-polyfill.js",
      "background.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "browser-polyfill.js",
        "contentScript.js"
      ]
    }
  ]
}