My Twitch Tv Following

My Twitch Tv Following

Displays the online channels from your following list on Twitch in real time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "My Twitch Tv Following",
  "version": "1.0.4",
  "manifest_version": 2,
  "description": "Displays the online channels from your following list on Twitch in real time.",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "jquery-1.10.2.min.js",
      "background.js"
    ]
  },
  "icons": {
    "64": "heart-64p.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "heart-19p.png",
      "38": "heart-38p.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-1.10.2.min.js",
        "reader.js"
      ],
      "all_frames": false,
      "matches": [
        "*://*.twitch.tv/settings/*"
      ]
    }
  ],
  "permissions": [
    "*://*.twitch.tv/*",
    "http://static-cdn.jtvnw.net/*",
    "notifications"
  ]
}