NSFW Filter

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

O que é NSFW Filter?

NSFW Filter é uma extensão do Chrome desenvolvida por https://nsfw-filter.com, e sua principal característica é "Free, open source, and privacy-focused browser extension to block "not safe for work" content.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão NSFW Filter

Baixe arquivos de extensão NSFW Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome NSFW Filter NSFW Filter
ID kmgagnlkckiamnenbpigfaljmanlbbhh
URL Oficial https://chromewebstore.google.com/detail/nsfw-filter/kmgagnlkckiamnenbpigfaljmanlbbhh
Descrição Free, open source, and privacy-focused browser extension to block "not safe for work" content.
Tamanho do Arquivo 17.84 MB
Contagem de Instalações 5,626
Versão Atual 2.3.0
Última Atualização 2023-09-20
Data de Publicação 2020-08-04
Classificação 3.76/5 Total de 46 Avaliações
Desenvolvedor https://nsfw-filter.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://nsfw-filter.com/
URL da Página de Ajuda https://github.com/nsfw-filter/nsfw-filter
Idiomas Suportados 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
}