Get HLS from Youtbe

Retrieves the HLS URL from live Youtube streams.

Get HLS from Youtbe क्या है?

Get HLS from Youtbe jwennis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Retrieves the HLS URL from live Youtube streams."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Get HLS from Youtbe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}