LoL Esports Twitch Radio
Embed de Twitch y su chat en lolesports.com
LoL Esports Twitch Radioคืออะไร?
LoL Esports Twitch Radio เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aleijox7 และคุณลักษณะหลักของมันคือ "Embed de Twitch y su chat en lolesports.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LoL Esports Twitch Radio
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | LoL Esports Twitch Radio |
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" ] } ] } |