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
官方網址 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"
        }
    ]
}