Azure Devops File Opener

Azure Devops File Opener

Open Azure Devops files in VSCode and Jetbrains products!

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 File Opener",
  "version": "0.1.3",
  "author": "Håkon Wardeberg",
  "description": "Open Azure Devops files in VSCode and Jetbrains products!",
  "content_scripts": [
    {
      "matches": [
        "https://dev.azure.com/*",
        "https://*.visualstudio.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "index.html",
    "default_title": "Open tings in VSCode and jetbrains!"
  },
  "icons": {
    "256": "icons/favicon.png"
  }
}