Movie Ratings
Retrieve movie ratings from Rotten Tomatoes.
Cos'è Movie Ratings?
Movie Ratings è un'estensione di Chrome sviluppata da Ronak Patel, e la sua funzione principale è "Retrieve movie ratings from Rotten Tomatoes.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Movie Ratings
Scarica i file di estensione Movie Ratings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | pfmcppclannbbilgigjlodcjkkohjiom |
URL Ufficiale | https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom |
Descrizione | Retrieve movie ratings from Rotten Tomatoes. |
Dimensione del File | 80.87 KB |
Conteggio Installazioni | 194 |
Versione Corrente | 1.6.2 |
Ultimo Aggiornamento | 2015-01-18 |
Data di Pubblicazione | 2015-01-18 |
Valutazione | 3.00/5 Totale 13 Valutazioni |
Sviluppatore | Ronak Patel |
Tipo di Pagamento | free |
Lingue Supportate | 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'" } |