VS Code for the Web

VS Code for the Web

Opens VS Code for the Web (vscode.dev) in Firefox. Select text and open the context menu to search with either GitHub Code Search or StackOverflow.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.2",
  "name": "VS Code for the Web",
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/icon96.png"
  },
  "background": {
    "scripts": [
      "shortcut.js",
      "stackoverflow.js",
      "ghcs.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/icon32.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{daa9820c-9477-4fd2-8334-ddfe5d0da7ce}"
    }
  }
}