LoL Esports Twitch Radio
Embed de Twitch y su chat en lolesports.com
什么是LoL Esports Twitch Radio?
LoL Esports Twitch Radio是由Aleijox7开发的Chrome扩展程序,该扩展的主要功能是“Embed de Twitch y su chat en lolesports.com”。
扩展截图
下载LoL Esports Twitch Radio扩展crx文件
下载LoL Esports Twitch Radio扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Esta extensión añade la funcionalidad de ver un stream en modo radio en la página de lolesports.com para ver las partidas con el streamer que elijas. 扩展基本信息
| 名称 | |
| ID | heffdebiflnbofgacjcglfihhjakijil |
| 官方URL | https://chromewebstore.google.com/detail/lol-esports-twitch-radio/heffdebiflnbofgacjcglfihhjakijil |
| 简介 | Embed de Twitch y su chat en lolesports.com |
| 文件大小 | 38.86 KB |
| 安装次数 | 38 |
| 当前版本 | 1.7 |
| 更新时间 | 2024-01-02 |
| 上架时间 | 2023-04-16 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | Aleijox7 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | es |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "LoL Esports Twitch Radio",
"version": "1.7",
"description": "Embed de Twitch y su chat en lolesports.com",
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/lolesports.com\/*",
"https:\/\/lolesports.com\/live\/*",
"https:\/\/lolesports.com\/vod\/*"
],
"js": [
"contentScript.js",
"intro.js"
],
"css": [
"styles.css",
"introjs.css",
"introjs_dark.css"
]
}
]
} | |