Item Monitor for Tiwtcasting
Monitors gift items appears on a Twitcasting live window.
Vad är Item Monitor for Tiwtcasting?
Item Monitor for Tiwtcasting är en Chrome-tillägg utvecklad av https://kii-memo.blogspot.com, och dess huvudfunktion är "Monitors gift items appears on a Twitcasting live window.".
Tilläggsskärmbilder
Ladda ner Item Monitor for Tiwtcasting-förlängningens CRX-fil
Ladda ner Item Monitor for Tiwtcasting-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Item Monitor for Tiwtcasting |
ID | cmacelaefnllooaamdbielcbmfnaaelc |
Officiell webbadress | https://chromewebstore.google.com/detail/item-monitor-for-tiwtcast/cmacelaefnllooaamdbielcbmfnaaelc |
Beskrivning | Monitors gift items appears on a Twitcasting live window. |
Filstorlek | 25.26 KB |
Antal Installationer | 130 |
Aktuell Version | 0.1.1 |
Senast Uppdaterad | 2023-04-02 |
Publiceringsdatum | 2021-02-15 |
Utvecklare | https://kii-memo.blogspot.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
Hjälpsida URL | https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html |
Stödda Språk | 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__" } } } |