Imdb Watchlist Random Movie Generator

Chrome extension that generates a random movie from the imdb user's watchlist.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Imdb Watchlist Random Movie Generator",
  "version": "1.5",
  "description": "Chrome extension that generates a random movie from the imdb user's watchlist.",
  "page_action": {
    "default_icon": {
      "16": "thirdParty/icon16.png",
      "32": "thirdParty/icon32.png"
    }
  },
  "icons": {
    "16": "thirdParty/icon16.png",
    "32": "thirdParty/icon32.png",
    "48": "thirdParty/icon48.png",
    "128": "thirdParty/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.imdb.com/user/*/watchlist*"
      ],
      "all_frames": true,
      "js": [
        "generate.js"
      ],
      "css": [
        "main.css"
      ]
    }
  ],
  "manifest_version": 2
}