Blocked Search for YouTube™

Blocked Search for YouTube™

Stay focused & improve productivity. Easily block any distracting and unproductive video searches. Stop procrastination!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Blocked Search for YouTube™",
  "description": "Stay focused & improve productivity. Easily block any distracting and unproductive video searches. Stop procrastination!",
  "version": "2.1.3",
  "icons": {
    "128": "blocked-search-128x128.png"
  },
  "author": "Michael Buen",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "prevent-glimpse.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "blocked-search-128x128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.mjs",
        "content.html",
        "business-logic.mjs",
        "constants.mjs",
        "phrases.mjs",
        "helper.mjs",
        "configure.html",
        "configure.mjs",
        "default-lockdown-picture.webp",
        "help.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}