Streaming Remote

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

Qu'est-ce que Streaming Remote ?

Streaming Remote est une extension Chrome développée par wpatter6, et sa fonction principale est "Control web based video streaming services and other websites with your mobile or tablet device!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Streaming Remote

Téléchargez les fichiers d'extension Streaming Remote au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Streaming Remote Streaming Remote
ID phenknepgmgjafkipebllabgcjjnnkbg
URL Officiel https://chromewebstore.google.com/detail/streaming-remote/phenknepgmgjafkipebllabgcjjnnkbg
Description Control web based video streaming services and other websites with your mobile or tablet device!
Taille du Fichier 1.08 MB
Nombre d'Installations 760
Version Actuelle 1.3.2
Dernière Mise à Jour 2019-10-12
Date de Publication 2019-10-09
Évaluation 3.67/5 Total 3 Évaluations
Développeur wpatter6
Type de Paiement free
Site Web de l'Extension https://github.com/wpatter6/clickr
URL de la Page d'Aide https://github.com/wpatter6/clickr/issues
Langues Prises en Charge 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"
    }
}