TPPController

TPPController

Controller for Twitch Plays Pokemon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TPPController",
  "description": "Controller for Twitch Plays Pokemon",
  "version": "0.7.5",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "http://*/*"
  ],
  "browser_action": {
    "default_icon": "img/TPPIcon128.png",
    "default_title": "TPPController",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": []
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.twitch.tv/twitchplayspokemon"
      ],
      "css": [
        "css/content_script.css"
      ],
      "js": [
        "js/jquery-1.8.2.min.js",
        "js/bootstrap.min.js",
        "js/content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "48": "img/TPPIcon48.png",
    "128": "img/TPPIcon128.png"
  },
  "web_accessible_resources": [
    "img/glyphicons-halflings-white.png",
    "content_script_template.html",
    "img/TPPController.png"
  ]
}