ServiceNow RPA Chrome Extension

ServiceNow RPA Chrome Extension

ServiceNow RPA extension for chrome browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ServiceNow RPA Chrome Extension",
  "short_name": "snrpacrx",
  "version": "1.6",
  "manifest_version": 3,
  "description": "ServiceNow RPA extension for chrome browser.",
  "icons": {
    "24": "icons/logo.png",
    "32": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "scripts/main.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "all_frames": true,
      "js": [
        "scripts/core.js"
      ],
      "match_about_blank": true
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox allow-scripts; script-src 'self';object-src 'self'"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "permissions": [
    "alarms",
    "scripting",
    "nativeMessaging",
    "debugger",
    "tabs",
    "background",
    "webNavigation"
  ]
}