Dr Disrespect Chrome Extension

Dr Disrespect Chrome Extension

This chrome extension helps to keep track of the most dominant stream in the online gaming community while browsing twitch.tv

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Dr Disrespect Chrome Extension",
  "short_name": "DrDisRespect",
  "version": "1.0.1",
  "description": "This chrome extension helps to keep track of the most dominant stream in the online gaming community while browsing twitch.tv",
  "icons": {
    "128": "/img/logo_128.png"
  },
  "browser_action": {
    "default_icon": "/img/logo_16.png",
    "default_popup": "/pages/popup/index.html"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_start",
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "/lib/jquery.min.js",
        "/js/content.js"
      ]
    }
  ],
  "permissions": [
    "https://www.youtube.com/*"
  ],
  "web_accessible_resources": [
    "/*"
  ]
}