IMDb Runtime

Convert IMDb movie/tv runtimes to hours and minutes.

Co to jest IMDb Runtime?

IMDb Runtime to rozszerzenie Chrome opracowane przez Terkel Gjervig, a jego główną funkcją jest „Convert IMDb movie/tv runtimes to hours and minutes.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia IMDb Runtime

Pobierz pliki rozszerzeń IMDb Runtime 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

                        Automatically convert runtimes on IMDb to hours and minutes for easier reading.                    

Podstawowe informacje o rozszerzeniu

Nazwa IMDb Runtime IMDb Runtime
ID gclighdbiijnjlnjljgnamaibjkemffj
Oficjalny URL https://chromewebstore.google.com/detail/imdb-runtime/gclighdbiijnjlnjljgnamaibjkemffj
Opis Convert IMDb movie/tv runtimes to hours and minutes.
Rozmiar pliku 8.62 KB
Liczba instalacji 55
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2015-01-03
Data Publikacji 2015-01-02
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper Terkel Gjervig
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/imdb.com\/*",
                "http:\/\/www.imdb.com\/*",
                "https:\/\/imdb.com\/*",
                "https:\/\/www.imdb.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}