Redirect Shorts
Redirects youtube shorts to the normal player
什么是Redirect Shorts?
Redirect Shorts是由manas.bejj开发的Chrome扩展程序,该扩展的主要功能是“Redirects youtube shorts to the normal player”。
扩展截图
下载Redirect Shorts扩展crx文件
下载Redirect Shorts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension replaces the "/shorts/" from the url with "watch?v=" to play your shorts video on the normal player which is more user friendly on a computer. 扩展基本信息
| 名称 | |
| ID | lncinpfgcgmphkebnbfpogkgiaadphpi |
| 官方URL | https://chromewebstore.google.com/detail/redirect-shorts/lncinpfgcgmphkebnbfpogkgiaadphpi |
| 简介 | Redirects youtube shorts to the normal player |
| 文件大小 | 32.03 KB |
| 安装次数 | 2,945 |
| 当前版本 | 1.0 |
| 更新时间 | 2022-03-03 |
| 上架时间 | 2022-03-03 |
| 评分 | 4.32/5 共28次评分 |
| 开发者 | manas.bejj |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Redirect Shorts",
"version": "1.0",
"manifest_version": 3,
"description": "Redirects youtube shorts to the normal player",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png",
"256": "256.png"
},
"host_permissions": [
"*:\/\/www.youtube.com\/shorts\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"yt.js"
],
"run_at": "document_start"
}
]
} | |