VS Code

VS Code

Open GitHub and Azure Repos repositories in vscode.dev from the address bar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VS Code",
  "version": "2.6",
  "description": "Open GitHub and Azure Repos repositories in vscode.dev from the address bar",
  "action": {
    "default_icon": "vscode.png"
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "16": "vscode.png",
    "48": "vscode.png",
    "128": "vscode.png"
  },
  "commands": {
    "launchVSCode": {
      "suggested_key": {
        "default": "Ctrl+Period",
        "mac": "Command+Period"
      },
      "description": "Launch vscode.dev"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "tabs",
    "history",
    "storage"
  ],
  "omnibox": {
    "keyword": "code"
  }
}