Twitch Fullscreen Plus

Twitch Fullscreen Plus

Triggers fullscreen view of twitch stream with chat overlay

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitch Fullscreen Plus",
  "short_name": "TFP",
  "description": "Triggers fullscreen view of twitch stream with chat overlay",
  "version": "3.0.12",
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "css/style.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}