Get HLS from Youtbe

Retrieves the HLS URL from live Youtube streams.

Qu'est-ce que Get HLS from Youtbe ?

Get HLS from Youtbe est une extension Chrome développée par jwennis, et sa fonction principale est "Retrieves the HLS URL from live Youtube streams.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Get HLS from Youtbe

Téléchargez les fichiers d'extension Get HLS from Youtbe au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

This is an open source project.                    

Informations de Base sur l'Extension

Nom Get HLS from Youtbe Get HLS from Youtbe
ID dhjnjclmedbgdbmipdmdmoejnadcjnja
URL Officiel https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja
Description Retrieves the HLS URL from live Youtube streams.
Taille du Fichier 789 KB
Nombre d'Installations 1,000
Version Actuelle 1.0
Dernière Mise à Jour 2016-12-21
Date de Publication 2016-12-21
Évaluation 3.00/5 Total 8 Évaluations
Développeur jwennis
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jwennis/gethlsfromyoutube
Langues Prises en Charge 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"
        }
    ]
}