Youtube Comment Filter
Chrome extension that filters Youtube comments
Youtube Comment Filterとは何ですか?
Youtube Comment Filterはjasonleeappsによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension that filters Youtube comments」です。
拡張機能のスクリーンショット
Youtube Comment Filter拡張機能のCRXファイルをダウンロード
Youtube Comment Filter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A Chrome extension that lets you filter YouTube comments. Navigate to a YouTube video and enter what words you would like to filter out!
拡張機能の基本情報
名前 | Youtube Comment Filter |
ID | dbdnmgjgahjbdkonhiplfoljljebfchm |
公式URL | https://chromewebstore.google.com/detail/youtube-comment-filter/dbdnmgjgahjbdkonhiplfoljljebfchm |
説明 | Chrome extension that filters Youtube comments |
ファイルサイズ | 13.05 KB |
インストール数 | 417 |
現在のバージョン | 1.0 |
最終更新日 | 2020-06-14 |
公開日 | 2020-06-10 |
評価 | 3.75/5 合計 4 レビュー |
開発者 | jasonleeapps |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Comment Filter", "version": "1.0", "description": "Chrome extension that filters Youtube comments", "permissions": [ "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "images\/yt_icon_16.png", "48": "images\/yt_icon_48.png", "128": "images\/yt_icon_128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.youtube.com\/watch?v=*" ], "run_at": "document_end" } ], "page_action": { "default_popup": "popup.html" }, "manifest_version": 2 } |