Search Fixer for YouTube

Search Fixer for YouTube

Remove all distracting YouTube search suggestions, redirect shorts and much more!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Search Fixer for YouTube",
  "version": "7.0.1",
  "description": "Remove all distracting YouTube search suggestions, redirect shorts and much more!",
  "icons": {
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "icon256.png",
    "default_title": "Search Fixer for YouTube",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "ytt.js"
      ],
      "css": [
        "yt.css"
      ]
    }
  ],
  "host_permissions": [
    "http://www.youtube.com/"
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}