Uniqkey 2.0

Uniqkey 2.0

Uniqkey is a user-friendly password manager for businesses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "2.9.0",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "short_name": "__MSG_shortExtName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "author": "Uniqkey LLC",
  "homepage_url": "https://uniqkey.eu",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "96": "images/icon96.png",
    "128": "images/icon128.png"
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/autofill.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://secure.e-conomic.com/*",
        "http://iris/*",
        "https://supreme-test.vejlebrand.dk/*",
        "https://supreme.vejlebrand.dk/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "autofill.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_title": "uniqkey",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "browsingData",
    "privacy",
    "nativeMessaging",
    "downloads",
    "webRequest",
    "webRequestAuthProvider",
    "unlimitedStorage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}