uniFLOW Online

uniFLOW Online

Print from Chrome to uniFLOW Online after successful sign in.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_200308__",
  "version": "1.0.15",
  "default_locale": "en",
  "description": "__MSG_210697__",
  "manifest_version": 3,
  "minimum_chrome_version": "108",
  "incognito": "split",
  "permissions": [
    "printerProvider",
    "storage"
  ],
  "host_permissions": [
    "https://*.uniflowonline.com/"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "background": {
    "service_worker": "serviceWorker.js"
  },
  "action": {
    "default_popup": "index.html"
  },
  "icons": {
    "1024": "assets/logos/uniflow-logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.uniflowonline.com/chromeextension/*"
      ],
      "run_at": "document_idle",
      "js": [
        "assets/content-scripts/landing-page/landing-page.js"
      ],
      "css": [
        "assets/content-scripts/landing-page/landing-page.css"
      ]
    }
  ]
}