Movie Ratings

Retrieve movie ratings from Rotten Tomatoes.

Was ist Movie Ratings?

Movie Ratings ist eine Chrome-Erweiterung, die von Ronak Patel entwickelt wurde, und ihr Hauptmerkmal ist "Retrieve movie ratings from Rotten Tomatoes.".

Erweiterungsscreenshots

screenshot

Movie Ratings-Erweiterungs-CRX-Datei herunterladen

Laden Sie Movie Ratings-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

                        Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link).

After installing the extension the tabs currently opened will need to be reloaded.                    

Grundlegende Informationen zur Erweiterung

Name Movie Ratings Movie Ratings
ID pfmcppclannbbilgigjlodcjkkohjiom
Offizielle URL https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom
Beschreibung Retrieve movie ratings from Rotten Tomatoes.
Dateigröße 80.87 KB
Installationsanzahl 194
Aktuelle Version 1.6.2
Letztes Update 2015-01-18
Veröffentlichungsdatum 2015-01-18
Bewertung 3.00/5 Insgesamt 13 Bewertungen
Entwickler Ronak Patel
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Movie Ratings",
    "version": "1.6.2",
    "description": "Retrieve movie ratings from Rotten Tomatoes.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "listeners.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "display.html",
        "display.js",
        "config.js",
        "listeners.js",
        "lib\/*.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'"
}