Mubi Ratings

Shows Rotten Tomato ratings when browsing Mubi

Hvad er Mubi Ratings?

Mubi Ratings er en Chrome-udvidelse udviklet af vretallick, og dens hovedfunktion er "Shows Rotten Tomato ratings when browsing Mubi".

Udvidelsesskærmbilleder

screenshot

Download Mubi Ratings-udvidelses-CRX-fil

Download Mubi Ratings-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Mubi Ratings Mubi Ratings
ID dnpdjibenonbeglpjdklibeiodfjndlh
Officiel URL https://chrome.google.com/webstore/detail/mubi-ratings/dnpdjibenonbeglpjdklibeiodfjndlh
Beskrivelse Shows Rotten Tomato ratings when browsing Mubi
Filstørrelse 257 KB
Antal Installationer 53
Nuværende Version 1.5
Senest Opdateret 2016-12-14
Udgivelsesdato 2016-12-14
Bedømmelse 2.25/5 Samlet 4 Bedømmelser
Udvikler vretallick
Betalingsmetode free
Understøttede Sprog 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"
}