QA Assistant

QA Assistant

QA Assistant Tool helps to track test execution in TestRail, shows the list created/closed/reopened defects in JIRA, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ext_name__",
  "manifest_version": 2,
  "description": "__MSG_ext_decr__",
  "version": "1.4",
  "icons": {
    "16": "ico/icons8-Template-16.png",
    "48": "ico/icons8-Template-48.png",
    "128": "ico/icons8-Template-100.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": "ico/icons8-Template-16.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "js/bg_context_menu.js"
    ],
    "persistent": false
  },
  "default_locale": "en",
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/content_context_menu.js",
        "js/jquery.min.js",
        "js/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/*.png"
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "storage"
  ]
}