Get HLS from Youtbe
Retrieves the HLS URL from live Youtube streams.
Wat is Get HLS from Youtbe?
Get HLS from Youtbe is een Chrome-extensie ontwikkeld door jwennis, en de belangrijkste functie is "Retrieves the HLS URL from live Youtube streams.".
Extensie Screenshots
Download het CRX-bestand van de extensie Get HLS from Youtbe
Download Get HLS from Youtbe-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
A simple chrome extension to retrieve the HLS URL for live Youtube streams.
This is an open source project. Basisinformatie over de Extensie
| Naam | |
| ID | dhjnjclmedbgdbmipdmdmoejnadcjnja |
| Officiële URL | https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja |
| Beschrijving | Retrieves the HLS URL from live Youtube streams. |
| Bestandsgrootte | 789 KB |
| Aantal Installaties | 1,000 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2016-12-21 |
| Publicatiedatum | 2016-12-21 |
| Beoordeling | 3.00/5 Totaal 8 Beoordelingen |
| Ontwikkelaar | jwennis |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/jwennis/gethlsfromyoutube |
| Ondersteunde Talen | 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"
}
]
} | |