Netflix Plus

Netflix Plus

Auto-resume: You still there? popup, Customize subtitle color, size, font and shadow color and size. On the fly!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [],
      "include_globs": [
        "*netflix.com*"
      ],
      "css": [],
      "js": [
        "includes/jquery-2.1.1.min.js",
        "includes/netflix.js"
      ],
      "matches": [
        "*://*.netflix.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Auto-resume: You still there? popup, Customize subtitle color, size, font and shadow color and size. On the fly!",
  "icons": {
    "128": "icons/icon.png"
  },
  "browser_action": {
    "default_title": "Options",
    "default_popup": "options.html"
  },
  "background": {
    "scripts": [
      "includes/options.js"
    ],
    "persistent": true
  },
  "manifest_version": 2,
  "name": "Netflix Plus",
  "short_name": "Netflix+",
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "version": "2.5.7",
  "web_accessible_resources": [
    "icons/icon.png",
    "includes/jquery-2.1.1.min.js",
    "includes/netflix.js",
    "jquery-2.1.1.min.map"
  ]
}