film-ratings

film-ratings

Displays FilmWeb ratings on HBO Go and Netflix.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "film-ratings",
  "description": "Displays FilmWeb ratings on HBO Go and Netflix.",
  "version": "0.2.0",
  "author": "Maciej Barelkowski <[email protected]>",
  "background": {
    "scripts": [
      "dist/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://hbogo.pl/*"
      ],
      "js": [
        "dist/hboGo.js"
      ],
      "css": [
        "dist/style.css"
      ]
    },
    {
      "matches": [
        "https://www.netflix.com/browse*"
      ],
      "js": [
        "dist/netflix.js"
      ],
      "css": [
        "dist/style.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "https://www.filmweb.pl/search*"
  ]
}