DevOps Test UI - Functional Test

DevOps Test UI - Functional Test

Enables DevOps Test UI - Functional Test support for web applications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjltm9YRmXlN9kuxU15/AODC8qj1Oq23v+a9Hu08fn7akWJmrPqIqlWcQZyKGfHHJkCkUvrF95dLJ34VvmxDb8/DAESwtdZEntQyk44XKL92pE7W6T82GHWfDKZ0JjkaoAp+kJrje4EvOepq81ppEvIZWLDGxe4ZD5Pq/zvrkS8Kbz/QV9zkY6WEmM6VVHmHg7m6FAGwBvM+XTpSzHAiDU9apKX0kiA7Hdfh+aIVNfrsPkcF1j1R/6ca/fDC7F5aEQCOcMo8WmHzBGDh0Oci5Ers6ckpW6nVNGvKwSIq1wGhd0yxOINtluFdBoGMeW6uxgSYhYFdSiQ/XoHro9tK8IwIDAQAB",
  "name": "__MSG_name__",
  "version": "11.0.1",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "images/RFT_16.png",
    "48": "images/RFT_48.png",
    "128": "images/RFT_128.png"
  },
  "action": {
    "default_icon": "images/RFT.ico",
    "default_title": "__MSG_name__"
  },
  "options_page": "Options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "native_cs.js"
      ],
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "jquery.js",
        "images/busy.gif",
        "rftmain.js",
        "rftjsproxies.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "nativeMessaging",
    "tabs",
    "scripting",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*/*",
    "http://localhost/*/",
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}