RokuKast

A Chrome extension to stream web videos to Roku devices.

ما هو RokuKast؟

RokuKast هو إضافة Chrome تم تطويرها بواسطة Dan Greuel، والميزة الرئيسية لها هي "A Chrome extension to stream web videos to Roku devices.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة RokuKast

قم بتنزيل ملفات الامتداد RokuKast بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        RokuKast detects videos in your browser and lets you either download them or stream them to your Roku device.                    

معلومات أساسية عن التمديد

الاسم RokuKast RokuKast
ID bkcaoipeckgolimcehafhdmcegipapnm
عنوان URL الرسمي https://chromewebstore.google.com/detail/rokukast/bkcaoipeckgolimcehafhdmcegipapnm
الوصف A Chrome extension to stream web videos to Roku devices.
حجم الملف 171 KB
عدد التثبيتات 9,277
النسخة الحالية 0.0.2
آخر تحديث 2019-11-13
تاريخ النشر 2019-11-13
تقييم 3.62/5 مجموع تقييمات 42
المطور Dan Greuel
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/dgreuel/RokuKast
عنوان صفحة المساعدة https://github.com/dgreuel/RokuKast/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RokuKast",
    "description": "A Chrome extension to stream web videos to Roku devices.",
    "version": "0.0.2",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "webRequest",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}