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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}