Sourcegraph

Sourcegraph

Adds code intelligence to GitHub, GitLab, and other hosts: hovers, definitions, references. For 20+ languages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "23.12.12.2159",
  "name": "Sourcegraph",
  "manifest_version": 2,
  "description": "Adds code intelligence to GitHub, GitLab, and other hosts: hovers, definitions, references. For 20+ languages.",
  "browser_action": {
    "default_title": "Sourcegraph",
    "default_icon": {
      "32": "img/icon-32.png",
      "48": "img/icon-48.png",
      "128": "img/icon-128.png"
    }
  },
  "icons": {
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "scripts": [
      "js/backgroundPage.main.bundle.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "storage": {
    "managed_schema": "schema.json"
  },
  "optional_permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "content_security_policy": "script-src 'self' blob:; object-src 'self'",
  "web_accessible_resources": [
    "img/*",
    "css/*",
    "extensions/*"
  ],
  "omnibox": {
    "keyword": "src"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "https://github.com/*",
    "https://sourcegraph.com/*"
  ]
}