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

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

                        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"
        }
    ]
}