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是由rinepoyo開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件

下載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
官方網址 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"
    }
}