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 |
公式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 |
Eメール | [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__" } } } |