Chat Filter for YouTube Live
Chrome Extension for Filtering Chat Messages on YouTube Live.
Chat Filter for YouTube Liveとは何ですか?
Chat Filter for YouTube Liveはhttps://fiahfy.blogspot.comによって開発されたChromeの拡張機能で、その主な機能は「Chrome Extension for Filtering Chat Messages on YouTube Live.」です。
拡張機能のスクリーンショット
Chat Filter for YouTube Live拡張機能のCRXファイルをダウンロード
Chat Filter for YouTube Live拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- Filter chat messages by text or regular expression.
- Mask only messages or hide completely. 拡張機能の基本情報
| 名前 | |
| ID | jalcplhakmckbmlbidmbmpaegcpbejog |
| 公式URL | https://chromewebstore.google.com/detail/chat-filter-for-youtube-l/jalcplhakmckbmlbidmbmpaegcpbejog |
| 説明 | Chrome Extension for Filtering Chat Messages on YouTube Live. |
| ファイルサイズ | 192 KB |
| インストール数 | 3,413 |
| 現在のバージョン | 0.0.12 |
| 最終更新日 | 2023-05-04 |
| 公開日 | 2020-05-25 |
| 評価 | 4.48/5 合計 21 レビュー |
| 開発者 | https://fiahfy.blogspot.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/live_chat*"
],
"all_frames": true,
"js": [
"content-script.js"
],
"css": [
"content-script.css"
]
}
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"name": "Chat Filter for YouTube Live",
"description": "Chrome Extension for Filtering Chat Messages on YouTube Live.",
"version": "0.0.12"
} | |