Focused - Youtube Companion

Focused - Youtube Companion

Say goodbye to distractions on YouTube by blurring the attractive thumbnails on the homepage

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Focused - Youtube Companion",
  "version": "0.1",
  "description": "Say goodbye to distractions on YouTube by blurring the attractive thumbnails on the homepage",
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://*.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "ext-icon2.png",
      "24": "ext-icon2.png",
      "32": "ext-icon2.png"
    },
    "default_title": "Focused - Youtube Companion",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "ext-icon2.png"
  },
  "manifest_version": 3
}