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.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Item Monitor for Tiwtcasting

Λήψη αρχείων επέκτασης Item Monitor for Tiwtcasting σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 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__"
        }
    }
}