Item View for Tiwtcasting
Provides a mean of tracking gift items received during a Twitcasting live broadcast.
Item View for Tiwtcastingคืออะไร?
Item View for Tiwtcasting เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kii-memo.blogspot.com และคุณลักษณะหลักของมันคือ "Provides a mean of tracking gift items received during a Twitcasting live broadcast."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Item View for Tiwtcasting
ดาวน์โหลดไฟล์ส่วนขยาย Item View for Tiwtcasting ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Clicking the extension icon opens the Twitcasting's broadcastertool page. A simplified version of the page can be displayed with this extension so that the host of the live stream can monitor the flow of gift-items that are sent from the live stream viewers, relatively easy. The visibility of each page component such as the subtitle editor box or the category selector can be set by related check boxes in the option page or the popup window. If the user wishes to view the original broadcastertool page, it can be achieved by disabling this extension in the browser's extension management page and then refreshing the broadcastertool page. This extension is designed as a tool for the host of a Twitcasting live stream and the user login to the host's Twitcasting account is required.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Item View for Tiwtcasting |
ID | cpjjckjnfflaidkfndimojecaoblgank |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/item-view-for-tiwtcasting/cpjjckjnfflaidkfndimojecaoblgank |
คำอธิบาย | Provides a mean of tracking gift items received during a Twitcasting live broadcast. |
ขนาดไฟล์ | 44.88 KB |
จำนวนการติดตั้ง | 268 |
เวอร์ชันปัจจุบัน | 0.5.11 |
อัปเดตครั้งล่าสุด | 2023-09-01 |
วันที่เผยแพร่ | 2020-10-28 |
ผู้พัฒนา | https://kii-memo.blogspot.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://kii-memo.blogspot.com/item-view-for-twitcasting.html |
URL หน้าช่วยเหลือ | https://kii-memo.blogspot.com/item-view-for-twitcasting.html |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "ja", "version": "0.5.11", "name": "__MSG_extName__", "description": "__MSG_extDesc__", "author": "tw: @kii_memo_jp", "permissions": [ "activeTab", "storage", "https:\/\/*.twitcasting.tv\/*\/broadcastertool" ], "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": "tea-X_16.png", "32": "tea-X_32.png", "48": "tea-X_48.png", "128": "tea-X_128.png" }, "default_title": "__MSG_extName__" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitcasting.tv\/*\/broadcastertool" ], "run_at": "document_idle", "js": [ "contentScript.js", "itmView.js" ], "css": [ "custom.css" ] } ], "icons": { "16": "tea-X_16.png", "32": "tea-X_32.png", "48": "tea-X_48.png", "128": "tea-X_128.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" }, "description": "__MSG_extCmdDesc__" } } } |