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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}