IMDb ratings for watchever

Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.

Was ist IMDb ratings for watchever?

IMDb ratings for watchever ist eine Chrome-Erweiterung, die von Joscha Feth entwickelt wurde, und ihr Hauptmerkmal ist "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.".

Erweiterungsscreenshots

screenshot

IMDb ratings for watchever-Erweiterungs-CRX-Datei herunterladen

Laden Sie IMDb ratings for watchever-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

                        This extension seamlessly adds the ratings from IMDb and Rotten Tomatoes into the watchever web interface. Each movie and series detail page gets two more rating rows (if the movie/series can be found in IMDb). 

The IMDb ratings for watchever extension uses the Open Movie Database API by Brian Fritz (http://www.omdbapi.com/) for querying IMDb and Rotten Tomatoes. Thanks Brian!

The source code of this extension has been released under the MIT license - feel free to collaborate on enhancements and improvements here: https://github.com/joscha/watchever-imdb-ratings

Neither this extension, nor its author is in any way affiliated with Watchever GmbH.                    

Grundlegende Informationen zur Erweiterung

Name IMDb ratings for watchever IMDb ratings for watchever
ID foobflajciachdjffhabgjfnommkpibb
Offizielle URL https://chromewebstore.google.com/detail/imdb-ratings-for-watcheve/foobflajciachdjffhabgjfnommkpibb
Beschreibung Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.
Dateigröße 97.65 KB
Installationsanzahl 105
Aktuelle Version 0.0.7
Letztes Update 2013-12-15
Veröffentlichungsdatum 2013-12-14
Bewertung 4.67/5 Insgesamt 6 Bewertungen
Entwickler Joscha Feth
Zahlungsart free
Erweiterungswebsite https://github.com/joscha/watchever-imdb-ratings
Unterstützte Sprachen de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDb ratings for watchever",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "Enhances watchever with movie ratings from IMDb and Rotten Tomatoes.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/www.watchever.de\/filme\/*",
        "*:\/\/www.watchever.de\/serien\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.watchever.de\/filme\/*",
                "*:\/\/www.watchever.de\/serien\/*"
            ],
            "include_globs": [
                "*:\/\/www.watchever.de\/filme\/*-*",
                "*:\/\/www.watchever.de\/serien\/*-*"
            ],
            "css": [
                "data\/inject\/inject.css"
            ],
            "js": [
                "data\/jquery\/jquery-2.0.3.min.js",
                "data\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/jquery\/jquery-2.0.3.min.map"
    ]
}