TV for Youtube
Makes youtube.com/tv not redirect
什么是TV for Youtube?
TV for Youtube是由tberghuis开发的Chrome扩展程序,该扩展的主要功能是“Makes youtube.com/tv not redirect”。
扩展截图
下载TV for Youtube扩展crx文件
下载TV for Youtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | mbkenkpbobncoehadfogibjlhnaopcpb |
| 官方URL | https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb |
| 简介 | Makes youtube.com/tv not redirect |
| 文件大小 | 101 KB |
| 安装次数 | 1,636 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2021-01-19 |
| 上架时间 | 2021-01-19 |
| 评分 | 3.50/5 共2次评分 |
| 开发者 | tberghuis |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/tberghuis/tv-for-youtube |
| 帮助页面URL | https://github.com/tberghuis/tv-for-youtube/issues |
| 支持的语言 | 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"
}
} | |