Actual PogChamp

Actual PogChamp

Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Actual PogChamp",
  "version": "1.4.1",
  "description": "Script for replacing the twitch.tv global PogChamp emote with the original Gootecks version.",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "run_at": "document_end",
      "js": [
        "main.js"
      ]
    }
  ],
  "icons": {
    "128": "images/128.png"
  },
  "permissions": [
    "webNavigation"
  ],
  "host_permissions": [
    "*://*.twitch.tv/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}