Get HLS from Youtbe

Retrieves the HLS URL from live Youtube streams.

什么是Get HLS from Youtbe?

Get HLS from Youtbe是由jwennis开发的Chrome扩展程序,该扩展的主要功能是“Retrieves the HLS URL from live Youtube streams.”。

扩展截图

screenshot

下载Get HLS from Youtbe扩展crx文件

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