Invenias Extension

Invenias Extension

The Invenias Extension enables you to easily add people records to your database with the option to include them in existing…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Invenias Extension",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAle+9sk3WjFEM7bEzGNSQ6+z61AvXyX8MfH8R7WWZUJY8GvT3cJ1CpL3xIA44Cpgjbud4gFBBDs+VvwknuxF/AHoDjcusiO76zL0uvg03mzVB+OVVqq94Btdgwlj7kbhxdEEV+HAGhJMwVGBM6vrSN2joA+nXtjldRv7utz56BkQbI39YONYuqRIo3BkE4hkE2xteHT6UdRT5TUCholP2YCJIhKK0EOp83kpixmjQkKRoiqfdpTl3ekibDo6OEzfbnm5Z0Sx4ClIn0o2CHmMKPLan3yrgInePxMU0+/untEisGFbpPzhjPB+dQ16grgFY2jcHdHOHMb2EbW+FNbX9mQIDAQAB",
  "version": "1.1.0",
  "permissions": [
    "tabs",
    "activeTab",
    "cookies",
    "storage",
    "identity"
  ],
  "host_permissions": [
    "http://*.inveniasnextgen.local:44444/identity/*"
  ],
  "optional_host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content-script.js",
        "assets/scripts/generic.js"
      ],
      "css": [
        "assets/css/iframe_fix.css"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {},
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "index.html",
        "assets/scripts/generic.js",
        "assets/image/background.jpg",
        "assets/image/invenias-logo.svg",
        "assets/css/iframe_fix.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "/assets/image/favicon.png"
  },
  "oauth2": {
    "client_id": "WebApp",
    "scopes": [
      "openid",
      "api",
      "profile",
      "email"
    ],
    "response_type": "id_token token",
    "redirect_uri": "https://ehfgnibbcikohadnbkbdollhbphgeoki.chromiumapp.org/login-complete/",
    "acr_values": "form_factor=2 deviceId=bfebd3b9-c33b-499f-9873-88ff6cdddc03 deviceName=ChromeParser"
  }
}