Streaming Remote

Control web based video streaming services and other websites with your mobile or tablet device!

O que é Streaming Remote?

Streaming Remote é uma extensão do Chrome desenvolvida por wpatter6, e sua principal característica é "Control web based video streaming services and other websites with your mobile or tablet device!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Streaming Remote

Baixe arquivos de extensão Streaming 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 Netflix, Hulu, HBO, Amazon Prime, Comcast Streaming, and many more with your mobile device!

Streaming Remote gives you full control over your browser from your phone with an intuitive and simple remote control interface. After installing the Chrome or Firefox extension you can easily connect your phone to your browser and have full control of browsing, watching videos and filling out forms, all from the comfort of your couch.

The mobile app is located at:

Android: https://play.google.com/store/apps/details?id=com.willweb.clickr
iOS: https://apps.apple.com/us/app/streaming-remote-control/id1460043343

This extension uses web accessibility standards to allow users to navigate web sites displayed on a monitor or TV, turning your android or iPhone into a highly functional remote control. After installing the extension, a small remote control will appear on your browser's toolbar next to the web site's url. Clicking this will display a large QR code. Next. install and open the app. You will see a large "Scan" button at the bottom. Tap that and scan the QR code in your browser's window. That's it! Your phone is now a remote control that can easily navigate your favorite websites!

More details and issue submission can be found here: https://github.com/wpatter6/clickr                    

Informações Básicas da Extensão

Nome Streaming Remote Streaming Remote
ID phenknepgmgjafkipebllabgcjjnnkbg
URL Oficial https://chromewebstore.google.com/detail/streaming-remote/phenknepgmgjafkipebllabgcjjnnkbg
Descrição Control web based video streaming services and other websites with your mobile or tablet device!
Tamanho do Arquivo 1.08 MB
Contagem de Instalações 760
Versão Atual 1.3.2
Última Atualização 2019-10-12
Data de Publicação 2019-10-09
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor wpatter6
Tipo de Pagamento free
Site da Extensão https://github.com/wpatter6/clickr
URL da Página de Ajuda https://github.com/wpatter6/clickr/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Streaming Remote",
    "short_name": "Streaming Remote",
    "version": "1.3.2",
    "description": "Control web based video streaming services and other websites with your mobile or tablet device!",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "power",
        "windows",
        "debugger",
        ""
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/remote-control-icon-16.png",
            "32": "assets\/remote-control-icon-32.png",
            "48": "assets\/remote-control-icon-48.png",
            "128": "assets\/remote-control-icon-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content-global.css",
                "css\/content.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "site_specific\/netflix.js"
            ],
            "css": [
                "css\/netflix.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "site_specific\/reddit.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.hulu.com\/*"
            ],
            "js": [
                "site_specific\/hulu.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.google.com\/*"
            ],
            "js": [
                "site_specific\/google.js"
            ]
        },
        {
            "matches": [
                "*:\/\/twitter.com\/*",
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "site_specific\/twitter.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "site_specific\/facebook.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.hbonow.com\/*"
            ],
            "js": [
                "site_specific\/hbonow.js"
            ],
            "css": [
                "css\/hbonow.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.amazon.com\/*"
            ],
            "js": [
                "site_specific\/amazon.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/remote-control-icon-16.png",
        "32": "assets\/remote-control-icon-32.png",
        "48": "assets\/remote-control-icon-48.png",
        "128": "assets\/remote-control-icon-128.png"
    }
}