Item Monitor for Tiwtcasting
Monitors gift items appears on a Twitcasting live window.
什麼是Item Monitor for Tiwtcasting?
Item Monitor for Tiwtcasting是由https://kii-memo.blogspot.com開發的Chrome擴展程式,該擴展的主要功能是“Monitors gift items appears on a Twitcasting live window.”。
擴展截圖
下載Item Monitor for Tiwtcasting擴展crx文件
下載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 |
官方網址 | 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__" } } } |