Get HLS from Youtbe
Retrieves the HLS URL from live Youtube streams.
Vad är Get HLS from Youtbe?
Get HLS from Youtbe är en Chrome-tillägg utvecklad av jwennis, och dess huvudfunktion är "Retrieves the HLS URL from live Youtube streams.".
Tilläggsskärmbilder
Ladda ner Get HLS from Youtbe-förlängningens CRX-fil
Ladda ner Get HLS from Youtbe-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A simple chrome extension to retrieve the HLS URL for live Youtube streams.
This is an open source project. Grundläggande Information om Tillägg
| Namn | |
| ID | dhjnjclmedbgdbmipdmdmoejnadcjnja |
| Officiell webbadress | https://chrome.google.com/webstore/detail/get-hls-from-youtbe/dhjnjclmedbgdbmipdmdmoejnadcjnja |
| Beskrivning | Retrieves the HLS URL from live Youtube streams. |
| Filstorlek | 789 KB |
| Antal Installationer | 1,000 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2016-12-21 |
| Publiceringsdatum | 2016-12-21 |
| Betyg | 3.00/5 Totalt 8 Betyg |
| Utvecklare | jwennis |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/jwennis/gethlsfromyoutube |
| Stödda Språk | 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"
}
]
} | |