Fremily Chat

Fremily Chat

Chat colours and badges from on-screen chat for Fremily including live notifications!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fremily Chat",
  "version": "1.6.2",
  "description": "Chat colours and badges from on-screen chat for Fremily including live notifications!",
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "./bundle.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "notifications",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "https://florencebot.com/*",
    "https://www.twitch.tv/*",
    "https://florencebot-*.voupe.workers.dev/*",
    "http://localhost:3000/*"
  ],
  "icons": {
    "48": "img/fremily.png",
    "96": "img/fremily-96.png",
    "128": "img/fremily-128.png"
  },
  "background": {
    "service_worker": "js/service_worker.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options.html"
  },
  "action": {
    "default_icon": "img/fremily.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}