Movie Ratings
Retrieve movie ratings from Rotten Tomatoes.
Qu'est-ce que Movie Ratings ?
Movie Ratings est une extension Chrome développée par Ronak Patel, et sa fonction principale est "Retrieve movie ratings from Rotten Tomatoes.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Movie Ratings
Téléchargez les fichiers d'extension Movie 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
Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link). After installing the extension the tabs currently opened will need to be reloaded.
Informations de Base sur l'Extension
Nom | |
ID | pfmcppclannbbilgigjlodcjkkohjiom |
URL Officiel | https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom |
Description | Retrieve movie ratings from Rotten Tomatoes. |
Taille du Fichier | 80.87 KB |
Nombre d'Installations | 194 |
Version Actuelle | 1.6.2 |
Dernière Mise à Jour | 2015-01-18 |
Date de Publication | 2015-01-18 |
Évaluation | 3.00/5 Total 13 Évaluations |
Développeur | Ronak Patel |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Movie Ratings", "version": "1.6.2", "description": "Retrieve movie ratings from Rotten Tomatoes.", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "background": { "page": "background.html" }, "permissions": [ "contextMenus", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "listeners.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "display.html", "display.js", "config.js", "listeners.js", "lib\/*.js" ], "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'" } |