IMDB X - Movie Ratings Warehouse

This extension works on the IMDB site. Enriches the site with IMDB, Rotten Tomatoes and Metacritic ratings.

Vad är IMDB X - Movie Ratings Warehouse?

IMDB X - Movie Ratings Warehouse är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension works on the IMDB site. Enriches the site with IMDB, Rotten Tomatoes and Metacritic ratings.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner IMDB X - Movie Ratings Warehouse-förlängningens CRX-fil

Ladda ner IMDB X - Movie Ratings Warehouse-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

                        This extension works on the IMDB desktop site. It compiles movie ratings from various sites and displays them beside every instance of the movie name on the imdb site. Currently supports IMDB ratings, Rotten Tomato ratings and Metacritic ratings.                    

Grundläggande Information om Tillägg

Namn IMDB X - Movie Ratings Warehouse IMDB X - Movie Ratings Warehouse
ID oefkogkbfbgdkcihljelbaglodgfcpbk
Officiell webbadress https://chromewebstore.google.com/detail/imdb-x-movie-ratings-ware/oefkogkbfbgdkcihljelbaglodgfcpbk
Beskrivning This extension works on the IMDB site. Enriches the site with IMDB, Rotten Tomatoes and Metacritic ratings.
Filstorlek 373 KB
Antal Installationer 104
Aktuell Version 0.0.1
Senast Uppdaterad 2015-05-04
Publiceringsdatum 2015-05-03
Betyg 2.64/5 Totalt 11 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IMDB X - Movie Ratings Warehouse",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension works on the IMDB site. Enriches the site with IMDB, Rotten Tomatoes and Metacritic ratings.",
    "homepage_url": "http:\/\/imdb.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "icons\/*.png"
    ],
    "default_locale": "en",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/*",
                "https:\/\/www.imdb.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "http:\/\/www.imdb.com\/*",
                "https:\/\/www.imdb.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}