Streaming Remote

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

Τι είναι το Streaming Remote;

Το Streaming Remote είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον wpatter6, και η κύρια λειτουργία του είναι "Control web based video streaming services and other websites with your mobile or tablet device!".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Streaming Remote

Λήψη αρχείων επέκτασης Streaming Remote σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Streaming Remote Streaming Remote
ID phenknepgmgjafkipebllabgcjjnnkbg
Επίσημο URL https://chromewebstore.google.com/detail/streaming-remote/phenknepgmgjafkipebllabgcjjnnkbg
Περιγραφή Control web based video streaming services and other websites with your mobile or tablet device!
Μέγεθος Αρχείου 1.08 MB
Αριθμός Εγκαταστάσεων 760
Τρέχουσα Έκδοση 1.3.2
Τελευταία Ενημέρωση 2019-10-12
Ημερομηνία Δημοσίευσης 2019-10-09
Αξιολόγηση 3.67/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής wpatter6
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/wpatter6/clickr
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/wpatter6/clickr/issues
Υποστηριζόμενες Γλώσσες 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"
    }
}