Item Monitor for Tiwtcasting
Monitors gift items appears on a Twitcasting live window.
Wat is Item Monitor for Tiwtcasting?
Item Monitor for Tiwtcasting is een Chrome-extensie ontwikkeld door https://kii-memo.blogspot.com, en de belangrijkste functie is "Monitors gift items appears on a Twitcasting live window.".
Extensie Screenshots
Download het CRX-bestand van de extensie Item Monitor for Tiwtcasting
Download Item Monitor for Tiwtcasting-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Item Monitor for Tiwtcasting |
ID | cmacelaefnllooaamdbielcbmfnaaelc |
Officiële URL | https://chromewebstore.google.com/detail/item-monitor-for-tiwtcast/cmacelaefnllooaamdbielcbmfnaaelc |
Beschrijving | Monitors gift items appears on a Twitcasting live window. |
Bestandsgrootte | 25.26 KB |
Aantal Installaties | 130 |
Huidige Versie | 0.1.1 |
Laatst Bijgewerkt | 2023-04-02 |
Publicatiedatum | 2021-02-15 |
Ontwikkelaar | https://kii-memo.blogspot.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
Help Pagina-URL | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
Ondersteunde Talen | 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__" } } } |