VersaTrial

VersaTrial

Helping sites re-imagine their workflow across different technology platforms.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "VersaTrial",
  "description": "Helping sites re-imagine their workflow across different technology platforms.",
  "version": "2.19.1",
  "manifest_version": 3,
  "icons": {
    "16": "/img/icons/16.png",
    "32": "/img/icons/32.png",
    "48": "/img/icons/48.png",
    "128": "/img/icons/128.png"
  },
  "background": {
    "service_worker": "/js/background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "/pages/popup/index.html",
    "default_icons": {
      "16": "/img/icons/16.png",
      "32": "/img/icons/32.png",
      "48": "/img/icons/48.png",
      "128": "/img/icons/128.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "https://versatrial-staging.herokuapp.com/*",
        "https://app.versatrial.io/*",
        "https://versatrial.test/*",
        "https://versatrial.dev/*"
      ],
      "js": [
        "/js/launcher.js"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": true,
      "matches": [
        "https://app.versatrial.io/*"
      ],
      "js": [
        "/js/app_content.js"
      ]
    },
    {
      "all_frames": false,
      "run_at": "document_idle",
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "https://versatrial-staging.herokuapp.com/*",
        "https://app.versatrial.io/*",
        "https://versatrial.test/*",
        "https://versatrial.dev/*"
      ],
      "js": [
        "/js/initiate_nudges.js"
      ]
    }
  ],
  "options_ui": {
    "page": "/pages/options/index.html",
    "open_in_tab": false
  },
  "optional_permissions": [
    "bookmarks",
    "downloads"
  ],
  "permissions": [
    "activeTab",
    "alarms",
    "cookies",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://*/*"
      ],
      "extension_ids": []
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}