ShowTalk

ShowTalk

A Chrome extension to make Netflix a more social experience by embedding comments and reactions into the video player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ShowTalk",
  "description": "A Chrome extension to make Netflix a more social experience by embedding comments and reactions into the video player",
  "version": "1.2",
  "options_page": "settings.html",
  "permissions": [
    "identity",
    "storage",
    "https://*.facebook.com/*",
    "https://zsccly6sah.execute-api.us-east-2.amazonaws.com/prod/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.netflix.com/*",
        "https://*.netflix.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/showtalk.js"
      ],
      "css": [
        "css/showtalk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/*.png"
  ],
  "icons": {
    "32": "assets/logo/logo_32.png",
    "48": "assets/logo/logo_48.png",
    "64": "assets/logo/logo_64.png",
    "128": "assets/logo/logo_128.png"
  },
  "background": {
    "scripts": [
      "js/jquery.min.js",
      "js/background.js"
    ]
  }
}