Trovo View
The extension allows you to display information about streams from the site Trovo.live
Trovo Viewคืออะไร?
Trovo View เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ejik.mycode และคุณลักษณะหลักของมันคือ "The extension allows you to display information about streams from the site Trovo.live"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trovo View
ดาวน์โหลดไฟล์ส่วนขยาย Trovo View ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The extension allows you to track the broadcasts of your favorite streamers, as well as receive notifications when some favorite streamer has turned on the broadcast. Notifications are configured individually for each streamer. New in Version 1.1: * Added English translation. The translation is determined by the language selected in the browser * Improved interface
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Trovo View |
ID | aalidilpehaedphkaoibhonjdmegloih |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/trovo-view/aalidilpehaedphkaoibhonjdmegloih |
คำอธิบาย | The extension allows you to display information about streams from the site Trovo.live |
ขนาดไฟล์ | 41.98 KB |
จำนวนการติดตั้ง | 173 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2022-05-25 |
วันที่เผยแพร่ | 2022-05-20 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | ejik.mycode |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://www.freeprivacypolicy.com/live/66b79c75-f7c2-4d91-8cb4-e72a039f2e6f |
ภาษาที่รองรับ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.1", "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "*:\/\/open-api.trovo.live\/*" ], "js": [ "popup.js", "options.js", "language.js" ] } ], "host_permissions": [ "*:\/\/trovo.live\/*" ], "action": { "default_title": "Trovo View", "default_popup": "popup.html" }, "permissions": [ "storage", "notifications", "alarms", "contextMenus" ], "background": { "service_worker": "background.js" }, "icons": { "16": "img\/trovo_icon.png" } } |