IMDb & Rotten Tomatoes @ Prime Instant Video

Enhances Prime Instant Video by amazon with movie ratings from IMDb and Rotten Tomatoes.

Was ist IMDb & Rotten Tomatoes @ Prime Instant Video?

IMDb & Rotten Tomatoes @ Prime Instant Video ist eine Chrome-Erweiterung, die von Joscha Feth entwickelt wurde, und ihr Hauptmerkmal ist "Enhances Prime Instant Video by amazon with movie ratings from IMDb and Rotten Tomatoes.".

Erweiterungsscreenshots

screenshot

IMDb & Rotten Tomatoes @ Prime Instant Video-Erweiterungs-CRX-Datei herunterladen

Laden Sie IMDb & Rotten Tomatoes @ Prime Instant Video-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 Prime Instant Video web interface. Each movie and series detail page gets two more rating entries (if the movie/series can be found in IMDb). 

The ratings for Prime Instant Video 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/prime-ratings

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

Grundlegende Informationen zur Erweiterung

Name IMDb & Rotten Tomatoes @ Prime Instant Video IMDb & Rotten Tomatoes @ Prime Instant Video
ID pfnkplljjpbbbclllghfeakdlfcldpfj
Offizielle URL https://chromewebstore.google.com/detail/imdb-rotten-tomatoes-prim/pfnkplljjpbbbclllghfeakdlfcldpfj
Beschreibung Enhances Prime Instant Video by amazon with movie ratings from IMDb and Rotten Tomatoes.
Dateigröße 101 KB
Installationsanzahl 932
Aktuelle Version 0.0.5
Letztes Update 2016-08-16
Veröffentlichungsdatum 2016-08-16
Bewertung 2.40/5 Insgesamt 10 Bewertungen
Entwickler Joscha Feth
Zahlungsart free
Erweiterungswebsite https://github.com/joscha/prime-ratings
Unterstützte Sprachen de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "0.0.5",
    "manifest_version": 2,
    "icons": {
        "16": "shared\/icons\/icon16.png",
        "48": "shared\/icons\/icon48.png",
        "128": "shared\/icons\/icon128.png"
    },
    "permissions": [
        "*:\/\/www.amazon.com\/*",
        "*:\/\/www.amazon.de\/*",
        "*:\/\/www.amazon.co.uk\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/www.amazon.com\/*",
                "*:\/\/www.amazon.de\/*",
                "*:\/\/www.amazon.co.uk\/*"
            ],
            "css": [
                "chrome.css",
                "shared\/inject.css"
            ],
            "js": [
                "components\/jquery.min.js",
                "chrome.js",
                "shared\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "shared\/inject.css"
    ]
}