YouTube Squarer

YouTube Squarer

Makes YouTube less round. Slight adjustments to UI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Squarer",
  "action": {},
  "manifest_version": 3,
  "version": "0.2",
  "description": "Makes YouTube less round. Slight adjustments to UI.",
  "permissions": [],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "background.js"
      ],
      "run_at": "document_end"
    }
  ]
}