imdb actor age reader

Shows the age of the actor while filming the movie

Co to jest imdb actor age reader?

imdb actor age reader to rozszerzenie Chrome opracowane przez tom anyz, a jego główną funkcją jest „Shows the age of the actor while filming the movie”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia imdb actor age reader

Pobierz pliki rozszerzeń imdb actor age reader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

have fun!
tom                    

Podstawowe informacje o rozszerzeniu

Nazwa imdb actor age reader imdb actor age reader
ID obbibbipcnihedbpfpkpnoceejpppdbf
Oficjalny URL https://chrome.google.com/webstore/detail/imdb-actor-age-reader/obbibbipcnihedbpfpkpnoceejpppdbf
Opis Shows the age of the actor while filming the movie
Rozmiar pliku 43.86 KB
Liczba instalacji 64
Aktualna Wersja 1.3.0
Ostatnia Aktualizacja 2020-12-21
Data Publikacji 2018-09-05
Ocena 3.67/5 Łącznie 6 Oceny
Deweloper tom anyz
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}