flixRemote - Your Netflix Remote

Remote for your Netflix Stream

O que é flixRemote - Your Netflix Remote?

flixRemote - Your Netflix Remote é uma extensão do Chrome desenvolvida por Tushar Shahi, e sua principal característica é "Remote for your Netflix Stream".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão flixRemote - Your Netflix Remote

Baixe arquivos de extensão flixRemote - Your Netflix Remote 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

                        Control a Netflix stream using your phone.

Sit back, relax, and use your mobile phone to watch Netflix. No need to install any app on your phone.

1. Pin the flixRemote extension to Chrome
2. Generate a QR code while on Netflix
3. Scan the QR code with your phone's camera

You are done!

Note: If QR code doesn’t work, enter the code at tinyurl.com/flixRemote                    

Informações Básicas da Extensão

Nome flixRemote - Your Netflix Remote flixRemote - Your Netflix Remote
ID jkhffbfbokiincaebolhpcfdkhiipalh
URL Oficial https://chrome.google.com/webstore/detail/flixremote-your-netflix-r/jkhffbfbokiincaebolhpcfdkhiipalh
Descrição Remote for your Netflix Stream
Tamanho do Arquivo 157 KB
Contagem de Instalações 105
Versão Atual 2.2
Última Atualização 2022-09-10
Data de Publicação 2020-10-20
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Tushar Shahi
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://remoteflix.herokuapp.com/welcome
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "flixRemote - Your Netflix Remote",
    "version": "2.2",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "description": "Remote for your Netflix Stream",
    "background": {
        "scripts": [
            "socket.io.js",
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_title": "flixRemote",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/watch*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/www.netflix.com\/watch*",
        "webNavigation"
    ],
    "web_accessible_resources": [
        "Raleway-Bold.ttf",
        "seekScript.js"
    ],
    "manifest_version": 2
}