IMDb Age

IMDb Age

Shows the age of an actor next to each of their films.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "IMDb Age",
  "description": "Shows the age of an actor next to each of their films.",
  "version": "1.1.5",
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "http://www.imdb.com/name/*",
        "http://www.imdb.com/title/*",
        "https://www.imdb.com/name/*",
        "https://www.imdb.com/title/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "imdb-age.js",
    "imdb-age.css",
    "recently-viewed.png"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.imdb.com/*"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage"
  ]
}