IMDb Runtime

Convert IMDb movie/tv runtimes to hours and minutes.

Was ist IMDb Runtime?

IMDb Runtime ist eine Chrome-Erweiterung, die von Terkel Gjervig entwickelt wurde, und ihr Hauptmerkmal ist "Convert IMDb movie/tv runtimes to hours and minutes.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

IMDb Runtime-Erweiterungs-CRX-Datei herunterladen

Laden Sie IMDb Runtime-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name IMDb Runtime IMDb Runtime
ID gclighdbiijnjlnjljgnamaibjkemffj
Offizielle URL https://chromewebstore.google.com/detail/imdb-runtime/gclighdbiijnjlnjljgnamaibjkemffj
Beschreibung Convert IMDb movie/tv runtimes to hours and minutes.
Dateigröße 8.62 KB
Installationsanzahl 55
Aktuelle Version 0.0.3
Letztes Update 2015-01-03
Veröffentlichungsdatum 2015-01-02
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler Terkel Gjervig
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}