Yet Another YouTube Comment Filter
Filters comments on YouTube.
Vad är Yet Another YouTube Comment Filter?
Yet Another YouTube Comment Filter är en Chrome-tillägg utvecklad av Yosuke Mizutani, och dess huvudfunktion är "Filters comments on YouTube.".
Tilläggsskärmbilder
Ladda ner Yet Another YouTube Comment Filter-förlängningens CRX-fil
Ladda ner Yet Another YouTube Comment Filter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Yet Another YouTube Comment Filter |
ID | kdmngkpgnecnahcpkdcmbcekonkcbdpc |
Officiell webbadress | https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc |
Beskrivning | Filters comments on YouTube. |
Filstorlek | 113 KB |
Antal Installationer | 841 |
Aktuell Version | 0.2.1 |
Senast Uppdaterad | 2022-05-03 |
Publiceringsdatum | 2021-01-03 |
Betyg | 4.25/5 Totalt 8 Betyg |
Utvecklare | Yosuke Mizutani |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mogproject/yay-filter |
Stödda Språk | 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" } |