CommentBlock

Block spam/scam YouTube comments

什么是CommentBlock?

CommentBlock是由Xenova开发的Chrome扩展程序,该扩展的主要功能是“Block spam/scam YouTube comments”。

扩展截图

screenshot
screenshot

下载CommentBlock扩展crx文件

下载CommentBlock扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        CommentBlock is an open-source browser extension that automatically blocks spam/scam YouTube comments.                    

扩展基本信息

名称 CommentBlock CommentBlock
ID pnhkbjdbaioddkchelkolhbhcmlibjfb
官方URL https://chromewebstore.google.com/detail/commentblock/pnhkbjdbaioddkchelkolhbhcmlibjfb
简介 Block spam/scam YouTube comments
文件大小 400 KB
安装次数 26
当前版本 0.0.3
更新时间 2023-02-28
上架时间 2023-02-13
评分 3.00/5 共2次评分
开发者 Xenova
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/xenova/commentblock
帮助页面URL https://github.com/xenova/commentblock
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CommentBlock",
    "description": "Block spam\/scam YouTube comments",
    "version": "0.0.3",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "css": [
                "styles\/style.css"
            ],
            "js": [
                "scripts\/defaults.js",
                "scripts\/utils.js",
                "scripts\/storage.js",
                "scripts\/labels.js",
                "scripts\/preprocess.js",
                "scripts\/emojis.js",
                "scripts\/detection.js",
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon.png",
            "24": "icons\/icon.png",
            "32": "icons\/icon.png",
            "128": "icons\/icon-128x128.png"
        },
        "default_title": "CommentBlock",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "64": "icons\/icon.png",
        "128": "icons\/icon-128x128.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}