TwitchPlaysN64 Controller

TwitchPlaysN64 Controller

An interactive controller to use with twitch.tv/twitchplaysn64 -- map controller input to your keyboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TwitchPlaysN64 Controller",
  "description": "An interactive controller to use with twitch.tv/twitchplaysn64 -- map controller input to your keyboard.",
  "version": "0.2.12",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "icons/18x18.png",
    "icons/miniController.png"
  ],
  "page_action": {
    "default_icon": {
      "19": "icons/19x19.png",
      "38": "icons/38x38.png"
    },
    "default_title": "TwitchPlaysN64 Controller",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.twitch.tv/",
        "http://www.twitch.tv/*",
        "https://www.twitch.tv/",
        "https://www.twitch.tv/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ]
}