RapidIdentity

RapidIdentity

Provides Form-Fill SSO capabilities when used with Identity Automation’s RapidIdentity product

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "RapidIdentity",
  "version": "2023.5.16.1",
  "author": "Identity Automation, LP",
  "description": "Provides Form-Fill SSO capabilities when used with Identity Automation’s RapidIdentity product",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "128": "icon128.png",
    "256": "icon.png"
  },
  "permissions": [
    "tabs",
    "nativeMessaging",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "update_url": "https://clients2.google.com/service/update2/crx"
}