Test & Feedback

Test & Feedback

Now everyone on the team can own quality. Capture findings, create issues, and collaborate with the team, directly from the browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Test & Feedback",
  "short_name": "XT, exploratory tesing, feedback, TF",
  "version": "1.0.232.0",
  "author": "Microsoft Corporation",
  "description": "Now everyone on the team can own quality. Capture findings, create issues, and collaborate with the team, directly from the browser.",
  "homepage_url": "https://marketplace.visualstudio.com/items?itemName=ms.vss-exploratorytesting-web",
  "icons": {
    "16": "Images/NormalState-16.png",
    "48": "Images/NormalState-48.png",
    "128": "Images/NormalState-128.png"
  },
  "browser_action": {
    "default_icon": {
      "20": "Images/NormalState-128.png"
    },
    "default_title": "Test & Feedback",
    "default_popup": "Popup2/Popup.html"
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y",
        "chromeos": "Ctrl+Shift+Y",
        "linux": "Ctrl+Shift+Y"
      }
    }
  },
  "background": {
    "page": "Background/Worker/Background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "Scripts/outer.js",
        "ContentScript/CustomisedWorkItemMessaging.js",
        "ContentScript/CaptureBrowserEvent.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "match_about_blank": true
    }
  ],
  "options_page": "Options/Options.html",
  "web_accessible_resources": [
    "Fonts/*.*"
  ],
  "permissions": [
    "activeTab",
    "clipboardRead",
    "tabs",
    "storage",
    "desktopCapture",
    "<all_urls>",
    "unlimitedStorage",
    "system.cpu",
    "system.memory",
    "system.display",
    "webNavigation"
  ],
  "sandbox": {
    "pages": [
      "AnnotationTool/View/AnnotationTool.html"
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}