GitHub Repository Explorer

GitHub Repository Explorer

Access the github repositories you've visited in the past (browser history) using Chrome Omnibox. A simple Chrome/Edge Extension…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GitHub Repository Explorer",
  "version": "1.0.0",
  "action": {
    "default_icon": "github.png"
  },
  "background": {
    "service_worker": "eventPage.js"
  },
  "icons": {
    "256": "github.png"
  },
  "commands": {
    "launchVSCode": {
      "suggested_key": {
        "default": "Ctrl+Period",
        "mac": "Command+Period"
      },
      "description": "GitHub Repository"
    }
  },
  "permissions": [
    "tabs",
    "history",
    "storage"
  ],
  "omnibox": {
    "keyword": "repo"
  }
}