Remove youtube video radius / rounded border

Remove youtube video radius / rounded border

Removes the rounded border added to Youtube video as of August 2023

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Remove youtube video radius / rounded border",
  "description": "Removes the rounded border added to Youtube video as of August 2023",
  "homepage_url": "https://chromewebstore.google.com/detail/remove-youtube-video-radi/blkmoljgndbojkapgbcedcfkkaapopgn",
  "version": "1.0.7",
  "manifest_version": 3,
  "action": {},
  "content_scripts": [
    {
      "run_at": "document_start",
      "css": [
        "style.css"
      ],
      "matches": [
        "https://*.youtube.com/*",
        "http://*.youtube.com/*"
      ]
    }
  ],
  "icons": {
    "48": "icon48.png"
  }
}