Item View for Tiwtcasting

Provides a mean of tracking gift items received during a Twitcasting live broadcast.

Item View for Tiwtcastingとは何ですか?

Item View for Tiwtcastingはhttps://kii-memo.blogspot.comによって開発されたChromeの拡張機能で、その主な機能は「Provides a mean of tracking gift items received during a Twitcasting live broadcast.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Item View for Tiwtcasting拡張機能のCRXファイルをダウンロード

Item View for Tiwtcasting拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Clicking the extension icon opens the Twitcasting's broadcastertool page. A simplified version of the page can be displayed with this extension so that the host of the live stream can monitor the flow of gift-items that are sent from the live stream viewers, relatively easy.

The visibility of each page component such as the subtitle editor box or the category selector can be set by related check boxes in the option page or the popup window.
If the user wishes to view the original broadcastertool page, it can be achieved by disabling this extension in the browser's extension management page and then refreshing the broadcastertool page.

This extension is designed as a tool for the host of a Twitcasting live stream and the user login to the host's Twitcasting account is required.                    

拡張機能の基本情報

名前 Item View for Tiwtcasting Item View for Tiwtcasting
ID cpjjckjnfflaidkfndimojecaoblgank
公式URL https://chromewebstore.google.com/detail/item-view-for-tiwtcasting/cpjjckjnfflaidkfndimojecaoblgank
説明 Provides a mean of tracking gift items received during a Twitcasting live broadcast.
ファイルサイズ 44.88 KB
インストール数 268
現在のバージョン 0.5.11
最終更新日 2023-09-01
公開日 2020-10-28
開発者 https://kii-memo.blogspot.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://kii-memo.blogspot.com/item-view-for-twitcasting.html
ヘルプページのURL https://kii-memo.blogspot.com/item-view-for-twitcasting.html
対応言語 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "ja",
    "version": "0.5.11",
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "author": "tw: @kii_memo_jp",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.twitcasting.tv\/*\/broadcastertool"
    ],
    "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": "tea-X_16.png",
            "32": "tea-X_32.png",
            "48": "tea-X_48.png",
            "128": "tea-X_128.png"
        },
        "default_title": "__MSG_extName__"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitcasting.tv\/*\/broadcastertool"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js",
                "itmView.js"
            ],
            "css": [
                "custom.css"
            ]
        }
    ],
    "icons": {
        "16": "tea-X_16.png",
        "32": "tea-X_32.png",
        "48": "tea-X_48.png",
        "128": "tea-X_128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            },
            "description": "__MSG_extCmdDesc__"
        }
    }
}