WikiToIMDB

WikiToIMDB

Adds IMDB rating to the top of Wikipedia movie articles.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "WikiToIMDB",
  "version": "0.1.2",
  "description": "Adds IMDB rating to the top of Wikipedia movie articles.",
  "icons": {
    "16": "w2i-16.png",
    "48": "w2i-48.png",
    "128": "w2i-128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "http://www.omdbapi.com/"
  ],
  "web_accessible_resources": [
    "imdb-star.png"
  ],
  "content_scripts": [
    {
      "css": [
        "wikitoimdb.css"
      ],
      "js": [
        "jquery.min.js",
        "script.js"
      ],
      "matches": [
        "http://*.wikipedia.org/wiki/*",
        "https://*.wikipedia.org/wiki/*"
      ]
    }
  ]
}