TV for Youtube
Makes youtube.com/tv not redirect
Vad är TV for Youtube?
TV for Youtube är en Chrome-tillägg utvecklad av tberghuis, och dess huvudfunktion är "Makes youtube.com/tv not redirect".
Tilläggsskärmbilder
Ladda ner TV for Youtube-förlängningens CRX-fil
Ladda ner TV for Youtube-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
Chrome extension that allows the viewing of the TV interface through the browser.
Features a control to allow for fullscreen mode.
Replaces User-Agent request header so that google will reply with the old working leanback interface. Grundläggande Information om Tillägg
| Namn | |
| ID | mbkenkpbobncoehadfogibjlhnaopcpb |
| Officiell webbadress | https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb |
| Beskrivning | Makes youtube.com/tv not redirect |
| Filstorlek | 101 KB |
| Antal Installationer | 1,636 |
| Aktuell Version | 0.0.3 |
| Senast Uppdaterad | 2021-01-19 |
| Publiceringsdatum | 2021-01-19 |
| Betyg | 3.50/5 Totalt 2 Betyg |
| Utvecklare | tberghuis |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/tberghuis/tv-for-youtube |
| Hjälpsida URL | https://github.com/tberghuis/tv-for-youtube/issues |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "TV for Youtube",
"description": "Makes youtube.com\/tv not redirect",
"version": "0.0.3",
"manifest_version": 2,
"permissions": [
"webRequest",
"webRequestBlocking",
"https:\/\/www.youtube.com\/tv"
],
"content_scripts": [
{
"js": [
"content.js"
],
"css": [
"fontawesome\/all.css",
"content.css"
],
"matches": [
"https:\/\/www.youtube.com\/tv"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"fullscreen.png",
"fontawesome\/webfonts\/fa-solid-900.woff2"
],
"icons": {
"16": "icons\/icon-16.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
}
} | |