Mubi Ratings

Shows Rotten Tomato ratings when browsing Mubi

What is Mubi Ratings?

Mubi Ratings is a Chrome extension developed by vretallick, and its main feature is "Shows Rotten Tomato ratings when browsing Mubi".

Extension Screenshots

screenshot

Download Mubi Ratings Extension CRX File

Download Mubi Ratings extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Overlays Rotten Tomato ratings when browsing Mubi, so you can make the right film choice.
Now works with latest site redesign and using OMDB API as Rotten Tomatoes have discontinued their public API.                    

Extension Basic Information

Name Mubi Ratings Mubi Ratings
ID dnpdjibenonbeglpjdklibeiodfjndlh
Official URL https://chrome.google.com/webstore/detail/mubi-ratings/dnpdjibenonbeglpjdklibeiodfjndlh
Description Shows Rotten Tomato ratings when browsing Mubi
File Size 257 KB
Installation Count 53
Current Version 1.5
Last Updated 2016-12-14
Publish Date 2016-12-14
Rating 2.25/5 Total 4 Ratings
Developer vretallick
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mubi Ratings",
    "description": "Shows Rotten Tomato ratings when browsing Mubi",
    "version": "1.5",
    "permissions": [
        "http:\/\/omdbapi.com\/",
        "http:\/\/*.mubi.com\/",
        "https:\/\/*.mubi.com\/",
        "tabs"
    ],
    "page_action": {
        "default_icon": "assets\/icon2.png",
        "default_title": "Mubi Ratings",
        "default_popup": "mubiratings.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.mubi.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/mubiratings.js"
            ],
            "css": [
                "css\/styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/jquery-1.10.2.min.map",
        "css\/styles.css",
        "assets\/smalltomato.png"
    ],
    "icons": {
        "16": "assets\/16.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "author": "Victoria Retallick"
}