Funimation Better Lights Off

Funimation Better Lights Off

Does a couple hacks to resize and hide background when playing a video on funimation.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Funimation Better Lights Off",
  "description": "Does a couple hacks to resize and hide background when playing a video on funimation.com",
  "version": "1.0",
  "background": {
    "scripts": [
      "user_agent_fix.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.funimation.com/shows/*/videos/official/*"
      ],
      "js": [
        "jquery-2.1.3.min.js",
        "size_fix.js"
      ]
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://www.funimation.com/shows/*"
  ]
}