Yet Another YouTube Comment Filter
Filters comments on YouTube.
Yet Another YouTube Comment Filterとは何ですか?
Yet Another YouTube Comment FilterはYosuke Mizutaniによって開発されたChromeの拡張機能で、その主な機能は「Filters comments on YouTube.」です。
拡張機能のスクリーンショット
Yet Another YouTube Comment Filter拡張機能のCRXファイルをダウンロード
Yet Another YouTube Comment Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension provides a comment filter on YouTube. - Language Filter: You can configure the languages you want to see. - Blocked Words: You can hide the comments that include specific keywords. - Reply Filter: You can filter replies in addition to independent comments. - Filter On/Off Button: You can turn on/off the filter for each tab.
拡張機能の基本情報
名前 | Yet Another YouTube Comment Filter |
ID | kdmngkpgnecnahcpkdcmbcekonkcbdpc |
公式URL | https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc |
説明 | Filters comments on YouTube. |
ファイルサイズ | 113 KB |
インストール数 | 841 |
現在のバージョン | 0.2.1 |
最終更新日 | 2022-05-03 |
公開日 | 2021-01-03 |
評価 | 4.25/5 合計 8 レビュー |
開発者 | Yosuke Mizutani |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/mogproject/yay-filter |
対応言語 | en,ru,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Yet Another YouTube Comment Filter", "version": "0.2.1", "description": "Filters comments on YouTube.", "author": "Yosuke Mizutani", "permissions": [ "storage" ], "background": { "scripts": [ "js\/browser-polyfill.min.js", "js\/background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/browser-polyfill.min.js", "js\/content.js" ], "css": [ "css\/yay-filter.css" ], "run_at": "document_idle" } ], "browser_action": { "default_title": "Yay Filter", "default_popup": "popup.html" }, "icons": { "16": "icons\/yayFilterIcon16.png", "32": "icons\/yayFilterIcon32.png", "48": "icons\/yayFilterIcon48.png", "96": "icons\/yayFilterIcon96.png", "128": "icons\/yayFilterIcon128.png" }, "homepage_url": "https:\/\/github.com\/mogproject\/yay-filter", "default_locale": "en" } |