Netflix Rottenizer

Overlays Rotten Tomato reviews when browsing Netflix.

¿Qué es Netflix Rottenizer?

Netflix Rottenizer es una extensión de Chrome desarrollada por orrybaram, y su función principal es "Overlays Rotten Tomato reviews when browsing Netflix.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Netflix Rottenizer

Descarga archivos de extensión Netflix Rottenizer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Netflix Rottenizer Netflix Rottenizer
ID ncoenoilpelnnkgbpcgcdkmibhhkljjc
URL Oficial https://chrome.google.com/webstore/detail/netflix-rottenizer/ncoenoilpelnnkgbpcgcdkmibhhkljjc
Descripción Overlays Rotten Tomato reviews when browsing Netflix.
Tamaño del Archivo 1.02 MB
Cantidad de Instalaciones 1,000
Versión Actual 0.7.6
Última Actualización 2015-07-07
Fecha de Publicación 2015-07-07
Calificación 2.96/5 Total de 24 Calificaciones
Desarrollador orrybaram
Tipo de Pago free
Sitio Web de la Extensión https://github.com/orrybaram/RottenNetflix/
URL de la Página de Ayuda https://github.com/orrybaram/RottenNetflix/issues
Idiomas Soportados 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"
    }
}