OmniTube

Add YouTube suggestions and search results to Omnibox. In addition extension replaces hyperlinks to YouTube videos with video…
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OmniTube",
  "version": "0.2",
  "manifest_version": 2,
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "default_locale": "en",
  "page_action": {
    "default_icon": {
      "19": "img/19.png",
      "38": "img/38.png"
    },
    "default_title": "__MSG_extension_action__"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "minimum_chrome_version": "18",
  "omnibox": {
    "keyword": "yt"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://gdata.youtube.com/",
    "http://suggestqueries.google.com/"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}