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 |
官方網址 | 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 |
電子郵箱 | [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" } |