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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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:\/\/*\/*"
    ]
}