imdb actor age reader

Shows the age of the actor while filming the movie

O que é imdb actor age reader?

imdb actor age reader é uma extensão do Chrome desenvolvida por tom anyz, e sua principal característica é "Shows the age of the actor while filming the movie".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão imdb actor age reader

Baixe arquivos de extensão imdb actor age reader no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        this little extension will display the age of the actor as the given movie was actually filmed.

have fun!
tom                    

Informações Básicas da Extensão

Nome imdb actor age reader imdb actor age reader
ID obbibbipcnihedbpfpkpnoceejpppdbf
URL Oficial https://chrome.google.com/webstore/detail/imdb-actor-age-reader/obbibbipcnihedbpfpkpnoceejpppdbf
Descrição Shows the age of the actor while filming the movie
Tamanho do Arquivo 43.86 KB
Contagem de Instalações 64
Versão Atual 1.3.0
Última Atualização 2020-12-21
Data de Publicação 2018-09-05
Classificação 3.67/5 Total de 6 Avaliações
Desenvolvedor tom anyz
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "imdb actor age reader",
    "version": "1.3.0",
    "manifest_version": 2,
    "description": "Shows the age of the actor while filming the movie",
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/www.imdb.com\/*",
                "https:\/\/www.imdb.com\/*"
            ]
        }
    ]
}