Azure DevOps workitem info

Azure DevOps workitem info

Get info for Azure DevOps workitems, including history data

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Azure DevOps workitem info",
  "author": "atotmakov",
  "version": "0.0.0.12",
  "description": "Get info for Azure DevOps workitems, including history data",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "dt.js",
        "time.js",
        "calculatedcolumn.js",
        "workitem.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dt.js",
        "time.js",
        "calculatedcolumn.js",
        "workitem.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": "img/icon16.png",
    "default_popup": "popup/index.html",
    "default_title": "Azure DevOps workitem info"
  }
}