Item Monitor for Tiwtcasting
Monitors gift items appears on a Twitcasting live window.
ما هو Item Monitor for Tiwtcasting؟
Item Monitor for Tiwtcasting هو إضافة Chrome تم تطويرها بواسطة https://kii-memo.blogspot.com، والميزة الرئيسية لها هي "Monitors gift items appears on a Twitcasting live window.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Item Monitor for Tiwtcasting
قم بتنزيل ملفات الامتداد Item Monitor for Tiwtcasting بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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__" } } } |