Netflixer

Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).

O que é Netflixer?

Netflixer é uma extensão do Chrome desenvolvida por MoCo, e sua principal característica é "Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).".

Baixar o arquivo CRX da Extensão Netflixer

Baixe arquivos de extensão Netflixer 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

                        When you open Netflix you see two big billboards: one for the some originals (which will play automatically when you hover it including sound) and one for a specific Netflix original. This extension removes those billboards and adds a button in the header 'Show billboards' which will toggle these billboards (so you can still see them).                    

Informações Básicas da Extensão

Nome Netflixer Netflixer
ID hfgjopmkbmeincmdahgpogmdakekgilm
URL Oficial https://chrome.google.com/webstore/detail/netflixer/hfgjopmkbmeincmdahgpogmdakekgilm
Descrição Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).
Tamanho do Arquivo 37.6 KB
Contagem de Instalações 417
Versão Atual 1.0.0
Última Atualização 2016-09-13
Data de Publicação 2016-09-13
Classificação 4.57/5 Total de 7 Avaliações
Desenvolvedor MoCo
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflixer",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "16": "res\/nf-logo-16.png",
        "48": "res\/nf-logo-48.png",
        "128": "res\/nf-logo-128.png"
    },
    "description": "Removes all the big stuff you don't want to see from Netflix (so you can finally browse in a normal manner again).",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ]
}