Chatterino Native Host

Replaces the chat on Twitch.tv with Chatterino.

Τι είναι το Chatterino Native Host;

Το Chatterino Native Host είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον fourtf, και η κύρια λειτουργία του είναι "Replaces the chat on Twitch.tv with Chatterino.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Chatterino Native Host

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

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

                        Overlay the Twitch.tv live chat with Chatterino, bringing the native performance and features of Chatterino to the website. Have the same experience chatting no matter if you are watching or are in offline chat.

We use events and data provided by the browser to overlay a native Chatterino window over the browser. The information includes the channel in which the user is in, as well as the size of the chat. Changing the tab or closing a window causes the Chatterino application to hide/show the window. Chatterino tracks the position and z-level of the Browser window and moves itself accordingly.

NOTE:
- This extension only works on Windows.
- We need to overlay a native window over the browser window which is tricky by design and may not work for you setup.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chatterino Native Host Chatterino Native Host
ID glknmaideaikkmemifbfkhnomoknepka
Επίσημο URL https://chromewebstore.google.com/detail/chatterino-native-host/glknmaideaikkmemifbfkhnomoknepka
Περιγραφή Replaces the chat on Twitch.tv with Chatterino.
Μέγεθος Αρχείου 28.37 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 1.5
Τελευταία Ενημέρωση 2023-03-31
Ημερομηνία Δημοσίευσης 2019-09-26
Αξιολόγηση 3.16/5 Συνολικά 62 Αξιολογήσεις
Προγραμματιστής fourtf
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/fourtf/chatterino2
Διεύθυνση URL της Σελίδας Βοήθειας https://discord.gg/3vmJRwy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chatterino Native Host",
    "version": "1.5",
    "description": "Replaces the chat on Twitch.tv with Chatterino.",
    "permissions": [
        "tabs",
        "nativeMessaging",
        "storage"
    ],
    "icons": {
        "256": "icon.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "50.0"
        }
    },
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}