Mubi Ratings

Shows Rotten Tomato ratings when browsing Mubi

Vad är Mubi Ratings?

Mubi Ratings är en Chrome-tillägg utvecklad av vretallick, och dess huvudfunktion är "Shows Rotten Tomato ratings when browsing Mubi".

Tilläggsskärmbilder

screenshot

Ladda ner Mubi Ratings-förlängningens CRX-fil

Ladda ner Mubi Ratings-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

                        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äggande Information om Tillägg

Namn Mubi Ratings Mubi Ratings
ID dnpdjibenonbeglpjdklibeiodfjndlh
Officiell webbadress https://chrome.google.com/webstore/detail/mubi-ratings/dnpdjibenonbeglpjdklibeiodfjndlh
Beskrivning Shows Rotten Tomato ratings when browsing Mubi
Filstorlek 257 KB
Antal Installationer 53
Aktuell Version 1.5
Senast Uppdaterad 2016-12-14
Publiceringsdatum 2016-12-14
Betyg 2.25/5 Totalt 4 Betyg
Utvecklare vretallick
Betalningssätt free
Stödda Språk 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"
}