Mubi Ratings
Shows Rotten Tomato ratings when browsing Mubi
Qu'est-ce que Mubi Ratings ?
Mubi Ratings est une extension Chrome développée par vretallick, et sa fonction principale est "Shows Rotten Tomato ratings when browsing Mubi".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mubi Ratings
Téléchargez les fichiers d'extension Mubi Ratings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | dnpdjibenonbeglpjdklibeiodfjndlh |
URL Officiel | https://chrome.google.com/webstore/detail/mubi-ratings/dnpdjibenonbeglpjdklibeiodfjndlh |
Description | Shows Rotten Tomato ratings when browsing Mubi |
Taille du Fichier | 257 KB |
Nombre d'Installations | 53 |
Version Actuelle | 1.5 |
Dernière Mise à Jour | 2016-12-14 |
Date de Publication | 2016-12-14 |
Évaluation | 2.25/5 Total 4 Évaluations |
Développeur | vretallick |
Type de Paiement | free |
Langues Prises en Charge | 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" } |