Mubi Ratings
Shows Rotten Tomato ratings when browsing Mubi
Wat is Mubi Ratings?
Mubi Ratings is een Chrome-extensie ontwikkeld door vretallick, en de belangrijkste functie is "Shows Rotten Tomato ratings when browsing Mubi".
Extensie Screenshots
Download het CRX-bestand van de extensie Mubi Ratings
Download Mubi Ratings-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | dnpdjibenonbeglpjdklibeiodfjndlh |
Officiële URL | https://chrome.google.com/webstore/detail/mubi-ratings/dnpdjibenonbeglpjdklibeiodfjndlh |
Beschrijving | Shows Rotten Tomato ratings when browsing Mubi |
Bestandsgrootte | 257 KB |
Aantal Installaties | 53 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2016-12-14 |
Publicatiedatum | 2016-12-14 |
Beoordeling | 2.25/5 Totaal 4 Beoordelingen |
Ontwikkelaar | vretallick |
Betalingswijze | free |
Ondersteunde Talen | 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" } |