Netflix Comment Section

Netflix Comment Section

Unoffical Netflix extension that adds episode specific comment sections to Netflix series and movies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Netflix Comment Section",
  "description": "Unoffical Netflix extension that adds episode specific comment sections to Netflix series and movies.",
  "version": "2.1.0",
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/comment-icon.jpg",
        "assets/open-comments-icon.png",
        "eventListeners.js"
      ],
      "matches": [
        "*://www.netflix.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/*"
      ],
      "js": [
        "startStopExtension.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icon16.jpg",
    "32": "assets/icon32.jpg",
    "48": "assets/icon48.png",
    "128": "assets/icon128.jpg"
  }
}