Get HLS from Youtbe

Retrieves the HLS URL from live Youtube streams.

What is Get HLS from Youtbe?

Get HLS from Youtbe is a Chrome extension developed by jwennis, and its main feature is "Retrieves the HLS URL from live Youtube streams.".

Extension Screenshots

screenshot

Download Get HLS from Youtbe Extension CRX File

Download Get HLS from Youtbe extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

This is an open source project.                    

Extension Basic Information

Name Get HLS from Youtbe Get HLS from Youtbe
ID dhjnjclmedbgdbmipdmdmoejnadcjnja
Official URL https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja
Description Retrieves the HLS URL from live Youtube streams.
File Size 789 KB
Installation Count 1,000
Current Version 1.0
Last Updated 2016-12-21
Publish Date 2016-12-21
Rating 3.00/5 Total 8 Ratings
Developer jwennis
Email [email protected]
Payment Type free
Extension Website https://github.com/jwennis/gethlsfromyoutube
Supported Languages 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"
        }
    ]
}