Reveal for Netflix

Reveal for Netflix

Browse Netflix using over two thousand hidden genres, topics, directors, and actors.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reveal for Netflix",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "Browse Netflix using over two thousand hidden genres, topics, directors, and actors.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "page_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Reveal for Netflix",
    "default_popup": "src/page_action/page_action.html"
  },
  "permissions": [
    "*://netflix.com/*"
  ],
  "web_accessible_resources": [
    "fonts/*.*",
    "categories.txt"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/browse/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/jquery/jquery.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}