Dr.Maggot

Dr.Maggot

Let's get rid of the trolls (Maggots) that are infesting the chat rooms of YouTube, Twitch, and OPENREC!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dr.Maggot",
  "manifest_version": 3,
  "description": "__MSG_Manifest_Description__",
  "default_locale": "ja",
  "version": "12.0.4.1",
  "icons": {
    "128": "public/img/dr.maggot.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "all_frames": true,
      "matches": [
        "https://www.twitch.tv/*",
        "https://www.youtube.com/*",
        "https://www.openrec.tv/*"
      ],
      "js": [
        "js/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "public/img/*",
        "public/web_style/*"
      ],
      "matches": [
        "https://www.twitch.tv/*",
        "https://www.youtube.com/*",
        "https://www.openrec.tv/*"
      ]
    }
  ],
  "action": {
    "default_icon": "public/img/dr.maggot.png",
    "default_popup": "public/docs/popup.html"
  },
  "background": {
    "service_worker": "js/sw.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "fontSettings"
  ]
}