Netflix Comments

Netflix Comments

Netflix Comments adds a comments section to the Netflix user interface.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Comments",
  "version": "1.1.5",
  "description": "Netflix Comments adds a comments section to the Netflix user interface.",
  "permissions": [
    "storage"
  ],
  "background": {
    "persistent": false,
    "page": "background.html"
  },
  "content_scripts": [
    {
      "js": [
        "netflixcomments.js"
      ],
      "css": [
        "master.css"
      ],
      "matches": [
        "*://*.netflix.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_title": "Netflix Comments",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "nfc-button.svg",
    "nfc-spinner.svg"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "icon/icon16.png",
    "32": "icon/icon32alt.png",
    "128": "icon/icon128-01.png"
  }
}