IMDB actor age reader

IMDB actor age reader

Shows the age of the actor while filming the movie

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IMDB actor age reader",
  "action": {
    "default_icon": "images/icon_128.png"
  },
  "icons": {
    "16": "images/icon_128.png",
    "32": "images/icon_128.png",
    "48": "images/icon_128.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 3,
  "version": "1.0.5",
  "description": "Shows the age of the actor while filming the movie",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "http://www.imdb.com/*",
        "https://www.imdb.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}