Item Monitor for Tiwtcasting

Monitors gift items appears on a Twitcasting live window.

Co je Item Monitor for Tiwtcasting?

Item Monitor for Tiwtcasting je rozšíření Chrome vyvinuté https://kii-memo.blogspot.com, a jeho hlavní funkcí je „Monitors gift items appears on a Twitcasting live window.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Item Monitor for Tiwtcasting

Stáhněte si soubory rozšíření Item Monitor for Tiwtcasting ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Item Monitor for Tiwtcasting Item Monitor for Tiwtcasting
ID cmacelaefnllooaamdbielcbmfnaaelc
Oficiální URL https://chromewebstore.google.com/detail/item-monitor-for-tiwtcast/cmacelaefnllooaamdbielcbmfnaaelc
Popis Monitors gift items appears on a Twitcasting live window.
Velikost souboru 25.26 KB
Počet instalací 130
Aktuální Verze 0.1.1
Poslední Aktualizace 2023-04-02
Datum Vydání 2021-02-15
Vývojář https://kii-memo.blogspot.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html
URL Stránky Nápovědy https://kii-memo.blogspot.com/item-monitor-for-tiwtcasting.html
Podporované Jazyky 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__"
        }
    }
}