Generative AI Monitoring

Generative AI Monitoring

Enforce enterprise-wide policies, ensure responsible generative AI adoption, and proactively mitigate all potential risks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Generative AI Monitoring",
  "version": "1.8.1",
  "description": "Enforce enterprise-wide policies, ensure responsible generative AI adoption, and proactively mitigate all potential risks.",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "https://app.copyleaks.com/"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "icons": {
    "16": "assets/icons/grc-fav-icon-16x16.png",
    "48": "assets/icons/grc-fav-icon-48x48.png",
    "128": "assets/icons/grc-fav-icon-128x128.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/images/copyleaks-logo.png"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/icons/remove-icon.svg"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/icons/icon-128x128.svg"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/icons/grc-fav-icon-48x48.png"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/images/copyleaks-loading.gif"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/icons/default-org-icon.svg"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/images/loader.gif"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/icons/send-icon-disabled.svg"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    },
    {
      "resources": [
        "assets/icons/send-icon.svg"
      ],
      "matches": [
        "https://*.openai.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.openai.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ]
}