NSFW Filter

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

Wat is NSFW Filter?

NSFW Filter is een Chrome-extensie ontwikkeld door https://nsfw-filter.com, en de belangrijkste functie is "Free, open source, and privacy-focused browser extension to block "not safe for work" content.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie NSFW Filter

Download NSFW Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam NSFW Filter NSFW Filter
ID kmgagnlkckiamnenbpigfaljmanlbbhh
Officiële URL https://chromewebstore.google.com/detail/nsfw-filter/kmgagnlkckiamnenbpigfaljmanlbbhh
Beschrijving Free, open source, and privacy-focused browser extension to block "not safe for work" content.
Bestandsgrootte 17.84 MB
Aantal Installaties 5,626
Huidige Versie 2.3.0
Laatst Bijgewerkt 2023-09-20
Publicatiedatum 2020-08-04
Beoordeling 3.76/5 Totaal 46 Beoordelingen
Ontwikkelaar https://nsfw-filter.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://nsfw-filter.com/
Help Pagina-URL https://github.com/nsfw-filter/nsfw-filter
Ondersteunde Talen 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
}