Item Monitor for Tiwtcasting

Monitors gift items appears on a Twitcasting live window.

Item Monitor for Tiwtcasting là gì?

Item Monitor for Tiwtcasting là một tiện ích mở rộng Chrome được phát triển bởi https://kii-memo.blogspot.com, và tính năng chính của nó là "Monitors gift items appears on a Twitcasting live window.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Item Monitor for Tiwtcasting

Tải xuống các tệp mở rộng Item Monitor for Tiwtcasting dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Item Monitor for Tiwtcasting Item Monitor for Tiwtcasting
ID cmacelaefnllooaamdbielcbmfnaaelc
URL Chính Thức https://chromewebstore.google.com/detail/item-monitor-for-tiwtcast/cmacelaefnllooaamdbielcbmfnaaelc
Mô tả Monitors gift items appears on a Twitcasting live window.
Kích Thước Tệp 25.26 KB
Số Lần Cài Đặt 130
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-04-02
Ngày Phát Hành 2021-02-15
Nhà Phát Triển https://kii-memo.blogspot.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html
URL Trang Trợ Giúp https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html
Ngôn Ngữ Được Hỗ Trợ 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__"
        }
    }
}