Github Repo Search

Github Repo Search

Quickly access your Github repos from your browser omnibox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Github Repo Search",
  "description": "Quickly access your Github repos from your browser omnibox",
  "manifest_version": 2,
  "version": "2.4.0",
  "short_name": "GitHub Repos",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "homepage_url": "https://firstandthird.com/opensource/github-repo-search",
  "author": "First+Third <[email protected]> (http://firstandthird.com/)",
  "permissions": [
    "alarms",
    "storage",
    "notifications",
    "https://api.github.com/user/repos"
  ],
  "browser_action": {
    "default_icon": {
      "32": "icons/icon48.png"
    },
    "default_title": "GitHub Repo Search",
    "default_popup": "src/popup/index.html"
  },
  "omnibox": {
    "keyword": "gh"
  },
  "background": {
    "scripts": [
      "src/background/background.js"
    ]
  },
  "options_ui": {
    "page": "src/options/options.html",
    "open_in_tab": false
  }
}