imdb actor age reader

Shows the age of the actor while filming the movie

Что такое imdb actor age reader?

imdb actor age reader - это расширение Chrome, разработанное tom anyz, и его основная функция - "Shows the age of the actor while filming the movie".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения imdb actor age reader

Скачайте файлы расширений imdb actor age reader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

have fun!
tom                    

Основная информация о расширении

Название imdb actor age reader imdb actor age reader
ID obbibbipcnihedbpfpkpnoceejpppdbf
Официальный URL https://chrome.google.com/webstore/detail/imdb-actor-age-reader/obbibbipcnihedbpfpkpnoceejpppdbf
Описание Shows the age of the actor while filming the movie
Размер файла 43.86 KB
Количество установок 64
Текущая Версия 1.3.0
Последнее Обновление 2020-12-21
Дата публикации 2018-09-05
Рейтинг 3.67/5 Всего 6 оценок
Разработчик tom anyz
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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\/*"
            ]
        }
    ]
}