Flixated

Flixated

View IMDB ratings and reviews from the web on Netflix

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Flixated",
  "description": "View IMDB ratings and reviews from the web on Netflix",
  "version": "0.0.0.1",
  "permissions": [],
  "browser_action": {
    "default_popup": "/script/popup.html"
  },
  "background": {
    "page": "/script/background.html",
    "persistent": true
  },
  "icons": {
    "16": "/icons/icon_16.png",
    "48": "/icons/icon_48.png",
    "128": "/icons/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/browse",
        "https://www.netflix.com/search"
      ],
      "js": [
        "/script/app.js"
      ],
      "run_at": "document_end",
      "css": [
        "/CSS/style.css"
      ]
    }
  ],
  "content_security_policy": "script-src 'self'     https://www.gstatic.com/ https://www.firebaseio.com https://www.googleapis.com; object-src 'self'",
  "web_accessible_resources": [
    "/CSS/style.css"
  ]
}