Streaming Remote

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

Vad är Streaming Remote?

Streaming Remote är en Chrome-tillägg utvecklad av wpatter6, och dess huvudfunktion är "Control web based video streaming services and other websites with your mobile or tablet device!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Streaming Remote-förlängningens CRX-fil

Ladda ner Streaming Remote-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Streaming Remote Streaming Remote
ID phenknepgmgjafkipebllabgcjjnnkbg
Officiell webbadress https://chromewebstore.google.com/detail/streaming-remote/phenknepgmgjafkipebllabgcjjnnkbg
Beskrivning Control web based video streaming services and other websites with your mobile or tablet device!
Filstorlek 1.08 MB
Antal Installationer 760
Aktuell Version 1.3.2
Senast Uppdaterad 2019-10-12
Publiceringsdatum 2019-10-09
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare wpatter6
Betalningssätt free
Tilläggswebbplats https://github.com/wpatter6/clickr
Hjälpsida URL https://github.com/wpatter6/clickr/issues
Stödda Språk 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"
    }
}