Easy IMDB Info

Easy IMDB Info

Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Easy IMDB Info",
  "version": "1.3",
  "manifest_version": 2,
  "description": "Adds rating and duration just below the movie name in Actors/Directors page. Also displays the plot of the movie as tooltip.",
  "icons": {
    "18": "imdb48.png",
    "24": "imdb48.png",
    "48": "imdb48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.imdb.com/name/*"
      ],
      "js": [
        "content/imdbquery.js",
        "content/jquery.js"
      ],
      "css": [
        "content/imdbquery.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "http://www.imdb.com/",
    "http://www.omdbapi.com/"
  ]
}