YouTube IT

YouTube IT

Quick Search for YouTube with Shortcuts, Right-Click, & Omnibox - Instantly search from anywhere on the web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube IT",
  "version": "3.0",
  "description": "Quick Search for YouTube with Shortcuts, Right-Click, & Omnibox - Instantly search from anywhere on the web.",
  "icons": {
    "48": "icon.png"
  },
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "omnibox": {
    "keyword": "youtube"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}