Netflex

Work out while you watch your favorite shows.

O que é Netflex?

Netflex é uma extensão do Chrome desenvolvida por Netflex, e sua principal característica é "Work out while you watch your favorite shows.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Netflex

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

                        Feeling guilty about watching too much TV and getting too little exercise? Netflex gives you the best of both worlds.
 
With this free extension, you can watch any Netflix show while we coach you through simple bodyweight exercises in the corner of your screen.
 
We know, it’s genius. You’re welcome.                    

Informações Básicas da Extensão

Nome Netflex Netflex
ID hfanmigfcphpeagamjjombcbpgafhpkf
URL Oficial https://chromewebstore.google.com/detail/netflex/hfanmigfcphpeagamjjombcbpgafhpkf
Descrição Work out while you watch your favorite shows.
Tamanho do Arquivo 871 KB
Contagem de Instalações 379
Versão Atual 1.0.0
Última Atualização 2021-01-12
Data de Publicação 2020-09-23
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Netflex
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://netflexandsweat.com/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflex",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Work out while you watch your favorite shows.",
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/netflex_icon16.png",
            "32": "icons\/netflex_icon32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "css": [
                "css\/index.css"
            ],
            "js": [
                "js\/index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/netflix.js"
    ],
    "icons": {
        "16": "icons\/netflex_icon16.png",
        "32": "icons\/netflex_icon32.png",
        "48": "icons\/netflex_icon48.png",
        "128": "icons\/netflex_icon128.png"
    }
}