Examine source code of IMDb Watcher

Inspect and view changes in IMDb Watcher source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "IMStreamer",
  "version": "1.0",
  "description": "Stream movies directly from browsing IMDB via VoDLocker API",
  "icons": {
    "96": "icons/icon@2x.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.imdb.com/title/*"
      ],
      "js": [
        "IMStreamer.js"
      ],
      "css": [
        "IMStreamer.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "resources/*.gif"
  ]
}