Test Run Monitor

Test Run Monitor

Test Run Monitor shows the progress of executed test cases during a day for specified Test Run in Test Rail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Test Run Monitor",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Test Run Monitor shows the progress of executed test cases during a day for specified Test Run in Test Rail",
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon_16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ],
  "permissions": [
    "*://*/*",
    "storage"
  ]
}