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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Monitors gift items appears on a Twitcasting live window."입니다.
확장 프로그램 스크린샷
Item Monitor for Tiwtcasting 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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__" } } } |