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! 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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
} | |