FremilyChat

FremilyChat

Chat colours and Icons from on-screen chat for Fremily

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FremilyChat",
  "description": "Chat colours and Icons from on-screen chat for Fremily",
  "version": "3.9",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "icons": {
    "16": "img/live16.png",
    "48": "img/live48.png",
    "128": "img/live128.png"
  },
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/CheckStatus.js",
      "jquery.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/fremily/*"
      ],
      "js": [
        "jquery.js",
        "js/script.js"
      ],
      "css": [
        "rainbow.css"
      ]
    }
  ],
  "permissions": [
    "https://www.twitch.tv/",
    "https://ajax.googleapis.com/",
    "storage",
    "https://chat.oshi7.tv/",
    "notifications"
  ]
}