Open in VS Code

Open in VS Code

Add a button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code in a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open in VS Code",
  "version": "0.6.0",
  "description": "Add a button to navigate from Github, Gitlab, Bitbucket and Jira to VS Code in a single click",
  "manifest_version": 2,
  "author": "Timmo Verlaan",
  "homepage_url": "https://github.com/tverlaan/open-in-vscode",
  "page_action": {
    "default_icon": {
      "16": "images/icon_open_vscode_16.png",
      "24": "images/icon_open_vscode_24.png",
      "32": "images/icon_open_vscode_32.png"
    },
    "default_title": "Open in VS Code"
  },
  "permissions": [
    "declarativeContent",
    "https://bitbucket.org/",
    "https://*.atlassian.net/",
    "https://github.com/",
    "https://gitlab.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/icon_open_vscode_16.png",
    "48": "images/icon_open_vscode_48.png",
    "128": "images/icon_open_vscode_128.png"
  },
  "commands": {
    "_execute_page_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+O",
        "mac": "Command+Shift+O",
        "chromeos": "Ctrl+Shift+O",
        "linux": "Ctrl+Shift+O"
      }
    }
  }
}