YouTube Chat Overlay
YouTubeのチャットメッセージを映像の上にも被せて表示します
什么是YouTube Chat Overlay?
YouTube Chat Overlay是由pi92开发的Chrome扩展程序,该扩展的主要功能是“YouTubeのチャットメッセージを映像の上にも被せて表示します”。
扩展截图
下载YouTube Chat Overlay扩展crx文件
下载YouTube Chat Overlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
YouTubeのチャットメッセージを映像の上にも被せて表示します 扩展基本信息
| 名称 | |
| ID | amjnhlafemdodfphfcohacnbkifndeka |
| 官方URL | https://chromewebstore.google.com/detail/youtube-chat-overlay/amjnhlafemdodfphfcohacnbkifndeka |
| 简介 | YouTubeのチャットメッセージを映像の上にも被せて表示します |
| 文件大小 | 1.39 MB |
| 安装次数 | 145 |
| 当前版本 | 1.0.16 |
| 更新时间 | 2024-03-06 |
| 上架时间 | 2021-05-03 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | pi92 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.0.16",
"manifest_version": 3,
"name": "YouTube Chat Overlay",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"vendor.js",
"content.js"
]
}
],
"action": {
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"storage"
]
} | |