Item Monitor for Tiwtcasting
Monitors gift items appears on a Twitcasting live window.
Was ist Item Monitor for Tiwtcasting?
Item Monitor for Tiwtcasting ist eine Chrome-Erweiterung, die von https://kii-memo.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Monitors gift items appears on a Twitcasting live window.".
Erweiterungsscreenshots
Item Monitor for Tiwtcasting-Erweiterungs-CRX-Datei herunterladen
Laden Sie Item Monitor for Tiwtcasting-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Item Monitor for Tiwtcasting |
ID | cmacelaefnllooaamdbielcbmfnaaelc |
Offizielle URL | https://chromewebstore.google.com/detail/item-monitor-for-tiwtcast/cmacelaefnllooaamdbielcbmfnaaelc |
Beschreibung | Monitors gift items appears on a Twitcasting live window. |
Dateigröße | 25.26 KB |
Installationsanzahl | 130 |
Aktuelle Version | 0.1.1 |
Letztes Update | 2023-04-02 |
Veröffentlichungsdatum | 2021-02-15 |
Entwickler | https://kii-memo.blogspot.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
Hilfeseite URL | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
Unterstützte Sprachen | 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__" } } } |