TV for Youtube
Makes youtube.com/tv not redirect
Qu'est-ce que TV for Youtube ?
TV for Youtube est une extension Chrome développée par tberghuis, et sa fonction principale est "Makes youtube.com/tv not redirect".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TV for Youtube
Téléchargez les fichiers d'extension TV for Youtube 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
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.
Informations de Base sur l'Extension
Nom | TV for Youtube |
ID | mbkenkpbobncoehadfogibjlhnaopcpb |
URL Officiel | https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb |
Description | Makes youtube.com/tv not redirect |
Taille du Fichier | 101 KB |
Nombre d'Installations | 1,636 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2021-01-19 |
Date de Publication | 2021-01-19 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | tberghuis |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/tberghuis/tv-for-youtube |
URL de la Page d'Aide | https://github.com/tberghuis/tv-for-youtube/issues |
Langues Prises en Charge | 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" } } |