NSFW Filter

Free, open source, and privacy-focused browser extension to block "not safe for work" content.

什么是NSFW Filter?

NSFW Filter是由https://nsfw-filter.com开发的Chrome扩展程序,该扩展的主要功能是“Free, open source, and privacy-focused browser extension to block "not safe for work" content.”。

扩展截图

screenshot
screenshot
screenshot

下载NSFW Filter扩展crx文件

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

扩展使用说明

                        NSFW Filter is a free, open source, and privacy-focused browser extension to filter out "not safe for work" content.

Under the hood, NSFW Filter uses an artificial intelligence model to detect NSFW content and block it.

This project is completely built by volunteers and will be forever free and open source. If you would like to contribute to the development of the project, visit: https://github.com/nsfw-filter/nsfw-filter                    

扩展基本信息

名称 NSFW Filter NSFW Filter
ID kmgagnlkckiamnenbpigfaljmanlbbhh
官方URL https://chromewebstore.google.com/detail/nsfw-filter/kmgagnlkckiamnenbpigfaljmanlbbhh
简介 Free, open source, and privacy-focused browser extension to block "not safe for work" content.
文件大小 17.84 MB
安装次数 5,626
当前版本 2.3.0
更新时间 2023-09-20
上架时间 2020-08-04
评分 3.76/5 共46次评分
开发者 https://nsfw-filter.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://nsfw-filter.com/
帮助页面URL https://github.com/nsfw-filter/nsfw-filter
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NSFW Filter",
    "version": "2.3.0",
    "description": "Free, open source, and privacy-focused browser extension to block \"not safe for work\" content.",
    "author": "Navendu Pottekkat",
    "homepage_url": "https:\/\/nsfw-filter.com",
    "permissions": [
        "",
        "storage"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "NSFW Filter",
        "default_popup": "src\/popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "models\/*, images\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}