NSFW All

Adds NSFW posts to the /r/all feed on reddit

O que é NSFW All?

NSFW All é uma extensão do Chrome desenvolvida por nsfwallext, e sua principal característica é "Adds NSFW posts to the /r/all feed on reddit".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NSFW All

Baixe arquivos de extensão NSFW All 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

                        A simple extension to add NSFW posts back to the /r/all feed. Uses a configurable multireddit to fetch posts and then attempts to add them to the feed in the position reddit would have ranked them. Click on the extension's button to configure and then visit /r/all. New reddit currently not supported at all so expect strange behavior if attempting to use there.                    

Informações Básicas da Extensão

Nome NSFW All NSFW All
ID kkgfmppgfjlomhijlklhiploceoekhgn
URL Oficial https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn
Descrição Adds NSFW posts to the /r/all feed on reddit
Tamanho do Arquivo 9.38 KB
Contagem de Instalações 97
Versão Atual 1.1
Última Atualização 2021-11-12
Data de Publicação 2021-11-12
Desenvolvedor nsfwallext
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NSFW All",
    "description": "Adds NSFW posts to the \/r\/all feed on reddit",
    "version": "1.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/r\/all*"
            ],
            "js": [
                "nsfw.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "resources": [
                "html\/submission.html"
            ]
        }
    ],
    "action": {
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/icon128.png"
    }
}