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
Eメール [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
}