NSFW All

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

¿Qué es NSFW All?

NSFW All es una extensión de Chrome desarrollada por nsfwallext, y su función principal es "Adds NSFW posts to the /r/all feed on reddit".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión NSFW All

Descarga archivos de extensión NSFW All en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre NSFW All NSFW All
ID kkgfmppgfjlomhijlklhiploceoekhgn
URL Oficial https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn
Descripción Adds NSFW posts to the /r/all feed on reddit
Tamaño del Archivo 9.38 KB
Cantidad de Instalaciones 97
Versión Actual 1.1
Última Actualización 2021-11-12
Fecha de Publicación 2021-11-12
Desarrollador nsfwallext
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}