42FM
42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -…
42FMคืออะไร?
42FM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://42fm.app และคุณลักษณะหลักของมันคือ "42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย 42FM
ดาวน์โหลดไฟล์ส่วนขยาย 42FM ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: - "!fm" Commands for broadcaster/mods - "!fm help" - "!fm pause" - "!fm play" - "!fm skip" - "!fm clear"
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | 42FM |
ID | djkopjknjkhhhlbpaooiffegfhibkdka |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/42fm/djkopjknjkhhhlbpaooiffegfhibkdka |
คำอธิบาย | 42FM allows you to listen to music on Twitch with synchronization between users that use this extension. Available commands: -… |
ขนาดไฟล์ | 597 KB |
จำนวนการติดตั้ง | 1,078 |
เวอร์ชันปัจจุบัน | 0.1.3 |
อัปเดตครั้งล่าสุด | 2023-10-07 |
วันที่เผยแพร่ | 2022-02-22 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | https://42fm.app |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://42fm.app/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "42FM", "version": "0.1.3", "action": { "default_title": "42FM", "default_icon": { "32": "assets\/logo-32.png" } }, "icons": { "32": "assets\/logo-32.png", "64": "assets\/logo-64.png", "128": "assets\/logo-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/twitch.tv\/*", "*:\/\/www.twitch.tv\/*" ], "js": [ "inject.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "scripting" ], "web_accessible_resources": [ { "resources": [ "assets\/*", "content.js", "inject.js", "iframe.js" ], "matches": [ "*:\/\/*.twitch.tv\/*" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.twitch.tv\/*" ] }, "host_permissions": [ "*:\/\/*.twitch.tv\/*" ] } |