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
Eメール [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"
        }
    ]
}