IMDb Runtime

Convert IMDb movie/tv runtimes to hours and minutes.

Vad är IMDb Runtime?

IMDb Runtime är en Chrome-tillägg utvecklad av Terkel Gjervig, och dess huvudfunktion är "Convert IMDb movie/tv runtimes to hours and minutes.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner IMDb Runtime-förlängningens CRX-fil

Ladda ner IMDb Runtime-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn IMDb Runtime IMDb Runtime
ID gclighdbiijnjlnjljgnamaibjkemffj
Officiell webbadress https://chromewebstore.google.com/detail/imdb-runtime/gclighdbiijnjlnjljgnamaibjkemffj
Beskrivning Convert IMDb movie/tv runtimes to hours and minutes.
Filstorlek 8.62 KB
Antal Installationer 55
Aktuell Version 0.0.3
Senast Uppdaterad 2015-01-03
Publiceringsdatum 2015-01-02
Betyg 4.00/5 Totalt 2 Betyg
Utvecklare Terkel Gjervig
E-post [email protected]
Betalningssätt free
Stödda Språk 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
        }
    ]
}