YouTube Moderator Watcher

In a YouTube Live chat, the moderator's and owner's statements will be fixed on the screen for a certain period of time.

Τι είναι το YouTube Moderator Watcher;

Το YouTube Moderator Watcher είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rinepoyo, και η κύρια λειτουργία του είναι "In a YouTube Live chat, the moderator's and owner's statements will be fixed on the screen for a certain period of time.".

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

Λήψη αρχείου CRX της επέκτασης YouTube Moderator Watcher

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

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

                        - It will be fixed if the target chat is no longer visible in the chat field earlier than the set time. If the flow is slow enough, it will not be fixed.

- Fixed chats will be unfixed after the set time.

- When you mouse over a fixed chat, a close button (X icon) will appear.

- You can specify the target of the fixing, whether it is a confirmed user or not, by specifying a name.

- You can exclude chatbots by specifying their names.

- You can set NG words to delete the chat or hide the text only.

- Regular expressions can be used as NG words.

UPDATE(v0.3.0)
- New option : Hide chat by non-members
- Fixed layout bug.                    

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

Όνομα YouTube Moderator Watcher YouTube Moderator Watcher
ID ejabebmjoidahjmjlgfopaddflpfagco
Επίσημο URL https://chromewebstore.google.com/detail/youtube-moderator-watcher/ejabebmjoidahjmjlgfopaddflpfagco
Περιγραφή In a YouTube Live chat, the moderator's and owner's statements will be fixed on the screen for a certain period of time.
Μέγεθος Αρχείου 80.14 KB
Αριθμός Εγκαταστάσεων 439
Τρέχουσα Έκδοση 0.3.0
Τελευταία Ενημέρωση 2022-06-05
Ημερομηνία Δημοσίευσης 2020-09-19
Αξιολόγηση 4.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής rinepoyo
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/rinepoyo/youtube-moderator-watcher
Υποστηριζόμενες Γλώσσες en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Moderator Watcher",
    "version": "0.3.0",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "16": "images\/size16.png",
        "48": "images\/size48.png",
        "128": "images\/size128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "default_locale": "en",
    "content_scripts": [
        {
            "run_at": "document_idle",
            "all_frames": true,
            "matches": [
                "https:\/\/*.youtube.com\/live_chat**"
            ],
            "js": [
                "storage.js",
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "image\/*"
    ],
    "browser_action": {
        "default_popup": "options.html"
    }
}