NSFW Filter

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

Was ist NSFW Filter?

NSFW Filter ist eine Chrome-Erweiterung, die von https://nsfw-filter.com entwickelt wurde, und ihr Hauptmerkmal ist "Free, open source, and privacy-focused browser extension to block "not safe for work" content.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

NSFW Filter-Erweiterungs-CRX-Datei herunterladen

Laden Sie NSFW Filter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name NSFW Filter NSFW Filter
ID kmgagnlkckiamnenbpigfaljmanlbbhh
Offizielle URL https://chromewebstore.google.com/detail/nsfw-filter/kmgagnlkckiamnenbpigfaljmanlbbhh
Beschreibung Free, open source, and privacy-focused browser extension to block "not safe for work" content.
Dateigröße 17.84 MB
Installationsanzahl 5,626
Aktuelle Version 2.3.0
Letztes Update 2023-09-20
Veröffentlichungsdatum 2020-08-04
Bewertung 3.76/5 Insgesamt 46 Bewertungen
Entwickler https://nsfw-filter.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://nsfw-filter.com/
Hilfeseite URL https://github.com/nsfw-filter/nsfw-filter
Unterstützte Sprachen 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
}