Item Monitor for Tiwtcasting
Monitors gift items appears on a Twitcasting live window.
Item Monitor for Tiwtcastingคืออะไร?
Item Monitor for Tiwtcasting เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kii-memo.blogspot.com และคุณลักษณะหลักของมันคือ "Monitors gift items appears on a Twitcasting live window."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Item Monitor for Tiwtcasting
ดาวน์โหลดไฟล์ส่วนขยาย Item Monitor for Tiwtcasting ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension monitors gift items displayed on the live screen on a Twitcasting Live page and allows the user to view a history of displayed items on the screen. It is possible some items may not be displayed on the live screen due to network congestions or browser malfunctions and this extension is not capable of monitoring items that were not displayed on the live screen.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Item Monitor for Tiwtcasting |
ID | cmacelaefnllooaamdbielcbmfnaaelc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/item-monitor-for-tiwtcast/cmacelaefnllooaamdbielcbmfnaaelc |
คำอธิบาย | Monitors gift items appears on a Twitcasting live window. |
ขนาดไฟล์ | 25.26 KB |
จำนวนการติดตั้ง | 130 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2023-04-02 |
วันที่เผยแพร่ | 2021-02-15 |
ผู้พัฒนา | https://kii-memo.blogspot.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
URL หน้าช่วยเหลือ | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "ja", "version": "0.1.1", "name": "__MSG_extName__", "description": "__MSG_extDesc__", "author": "tw: @kii_memo_jp", "permissions": [ "activeTab", "storage", "https:\/\/*.twitcasting.tv\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "browser_action": { "page": "", "chrome_style": true, "default_icon": { "16": "Stamp16.png", "32": "Stamp32.png", "48": "Stamp48.png", "128": "Stamp128.png" }, "default_title": "__MSG_extName__" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitcasting.tv\/*" ], "run_at": "document_idle", "js": [ "contentScript.js", "itemMon.js" ] } ], "icons": { "16": "Stamp16.png", "32": "Stamp32.png", "48": "Stamp48.png", "128": "Stamp128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "__MSG_extCmdDesc__" } } } |