Netflix Rottenizer

Overlays Rotten Tomato reviews when browsing Netflix.

O que é Netflix Rottenizer?

Netflix Rottenizer é uma extensão do Chrome desenvolvida por orrybaram, e sua principal característica é "Overlays Rotten Tomato reviews when browsing Netflix.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Netflix Rottenizer

Baixe arquivos de extensão Netflix Rottenizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Netflix Rottenizer Netflix Rottenizer
ID ncoenoilpelnnkgbpcgcdkmibhhkljjc
URL Oficial https://chrome.google.com/webstore/detail/netflix-rottenizer/ncoenoilpelnnkgbpcgcdkmibhhkljjc
Descrição Overlays Rotten Tomato reviews when browsing Netflix.
Tamanho do Arquivo 1.02 MB
Contagem de Instalações 1,000
Versão Atual 0.7.6
Última Atualização 2015-07-07
Data de Publicação 2015-07-07
Classificação 2.96/5 Total de 24 Avaliações
Desenvolvedor orrybaram
Tipo de Pagamento free
Site da Extensão https://github.com/orrybaram/RottenNetflix/
URL da Página de Ajuda https://github.com/orrybaram/RottenNetflix/issues
Idiomas Suportados 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"
    }
}