Youtube Longs
Shows gameplay footage under Youtube videos.
什么是Youtube Longs?
Youtube Longs是由simc.sambolec开发的Chrome扩展程序,该扩展的主要功能是“Shows gameplay footage under Youtube videos.”。
扩展截图
下载Youtube Longs扩展crx文件
下载Youtube Longs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you need overstimulation? This extension adds random gameplay footage under Youtube videos that you are watching to keep you entertained! 扩展基本信息
| 名称 | |
| ID | inajamlogoahnbliabnogbcomnbiefbb |
| 官方URL | https://chromewebstore.google.com/detail/youtube-longs/inajamlogoahnbliabnogbcomnbiefbb |
| 简介 | Shows gameplay footage under Youtube videos. |
| 文件大小 | 22.01 KB |
| 安装次数 | 1,935 |
| 当前版本 | 1.1.2 |
| 更新时间 | 2023-03-26 |
| 上架时间 | 2023-02-23 |
| 评分 | 4.07/5 共27次评分 |
| 开发者 | simc.sambolec |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube Longs",
"description": "Shows gameplay footage under Youtube videos.",
"version": "1.1.2",
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"js": [
"js\/functions.js",
"js\/insertVideo.js"
],
"css": [
"css\/embeded.css"
],
"matches": [
"*:\/\/www.youtube.com\/*"
],
"run_at": "document_end"
}
],
"icons": {
"128": "yt_longs.png"
},
"permissions": [
"tabs",
"storage"
],
"default_locale": "en",
"web_accessible_resources": [
{
"resources": [
"css\/width-fix.css"
],
"matches": [
"*:\/\/www.youtube.com\/*"
]
}
]
} | |