IMDb ratings for watchever

IMDb ratings for watchever

Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IMDb ratings for watchever",
  "version": "0.0.7",
  "manifest_version": 2,
  "description": "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "*://www.watchever.de/filme/*",
    "*://www.watchever.de/serien/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://www.watchever.de/filme/*",
        "*://www.watchever.de/serien/*"
      ],
      "include_globs": [
        "*://www.watchever.de/filme/*-*",
        "*://www.watchever.de/serien/*-*"
      ],
      "css": [
        "data/inject/inject.css"
      ],
      "js": [
        "data/jquery/jquery-2.0.3.min.js",
        "data/inject/inject.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "data/jquery/jquery-2.0.3.min.map"
  ]
}