Twitch Vertical

Twitch Vertical

A extension to move Twitch Chat below the player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Vertical",
  "description": "A extension to move Twitch Chat below the player",
  "version": "1.0.0",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": "icons/icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.twitch.tv/*",
        "https://*.twitch.tv/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "vertical.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}