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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Monitors gift items appears on a Twitcasting live window."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Item Monitor for Tiwtcasting एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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__" } } } |