Get HLS from Youtbe

Retrieves the HLS URL from live Youtube streams.

Get HLS from Youtbeคืออะไร?

Get HLS from Youtbe เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jwennis และคุณลักษณะหลักของมันคือ "Retrieves the HLS URL from live Youtube streams."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Get HLS from Youtbe

ดาวน์โหลดไฟล์ส่วนขยาย Get HLS from Youtbe ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        A simple chrome extension to retrieve the HLS URL for live Youtube streams.

This is an open source project.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Get HLS from Youtbe Get HLS from Youtbe
ID dhjnjclmedbgdbmipdmdmoejnadcjnja
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja
คำอธิบาย Retrieves the HLS URL from live Youtube streams.
ขนาดไฟล์ 789 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-12-21
วันที่เผยแพร่ 2016-12-21
คะแนน 3.00/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา jwennis
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jwennis/gethlsfromyoutube
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Get HLS from Youtbe",
    "version": "1.0",
    "description": "Retrieves the HLS URL from live Youtube streams.",
    "icons": {
        "16": "images\/icon\/24.png",
        "48": "images\/icon\/48.png",
        "128": "images\/icon\/128.png"
    },
    "permissions": [
        "declarativeContent",
        "background",
        "tabs",
        "clipboardRead",
        "clipboardWrite"
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon\/24.png",
            "24": "images\/icon\/24.png",
            "32": "images\/icon\/48.png"
        },
        "default_title": "Get HLS",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "scripts\/event.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/*",
        "scripts\/*",
        "styles\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch*"
            ],
            "js": [
                "scripts\/jquery-3.1.1.min.js",
                "scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}