Random Netflix

Random Netflix

Randomly choose something from your Netflix recommendations (listings page)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Random Netflix",
  "version": "0.0.2",
  "manifest_version": 2,
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "description": "Randomly choose something from your Netflix recommendations (listings page)",
  "content_scripts": [
    {
      "matches": [
        "http://*.netflix.com/WiHome",
        "https://*.netflix.com/WiHome"
      ],
      "js": [
        "lib/random_netflix.js"
      ]
    }
  ],
  "homepage_url": "https://github.com/chuckbergeron/random-netflix-extension"
}