Netflix Rottenizer
Overlays Rotten Tomato reviews when browsing Netflix.
Cos'è Netflix Rottenizer?
Netflix Rottenizer è un'estensione di Chrome sviluppata da orrybaram, e la sua funzione principale è "Overlays Rotten Tomato reviews when browsing Netflix.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Netflix Rottenizer
Scarica i file di estensione Netflix Rottenizer 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
Takes critic and audience ratings from Rotten Tomatoes and overlays them over Netflix movies. The extension also adds a button that lets you hide rotten movies. Based on Nicolae Rusan's Rotten Netflix.
Informazioni di Base sull'Estensione
Nome | |
ID | ncoenoilpelnnkgbpcgcdkmibhhkljjc |
URL Ufficiale | https://chrome.google.com/webstore/detail/netflix-rottenizer/ncoenoilpelnnkgbpcgcdkmibhhkljjc |
Descrizione | Overlays Rotten Tomato reviews when browsing Netflix. |
Dimensione del File | 1.02 MB |
Conteggio Installazioni | 1,000 |
Versione Corrente | 0.7.6 |
Ultimo Aggiornamento | 2015-07-07 |
Data di Pubblicazione | 2015-07-07 |
Valutazione | 2.96/5 Totale 24 Valutazioni |
Sviluppatore | orrybaram |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/orrybaram/RottenNetflix/ |
URL della Pagina di Aiuto | https://github.com/orrybaram/RottenNetflix/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Rottenizer", "version": "0.7.6", "manifest_version": 2, "description": "Overlays Rotten Tomato reviews when browsing Netflix.", "permissions": [ "http:\/\/api.rottentomatoes.com\/", "http:\/\/www.rottentomatoes.com\/", "http:\/\/netflixrottenizer.appspot.com\/", "storage", "tabs" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": { "19": "icon16.png", "38": "icon48.png" }, "default_title": "Netflix Rottenizer", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*.netflix.com\/*" ], "js": [ "jquery-1.7.1.min.js", "hoverIntent-1.8.js", "lodash.js", "netflix_rottenizer.js" ], "css": [ "netflix_rottenizer.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |