NSFW All

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

Wat is NSFW All?

NSFW All is een Chrome-extensie ontwikkeld door nsfwallext, en de belangrijkste functie is "Adds NSFW posts to the /r/all feed on reddit".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie NSFW All

Download NSFW All-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

                        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.                    

Basisinformatie over de Extensie

Naam NSFW All NSFW All
ID kkgfmppgfjlomhijlklhiploceoekhgn
Officiële URL https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn
Beschrijving Adds NSFW posts to the /r/all feed on reddit
Bestandsgrootte 9.38 KB
Aantal Installaties 97
Huidige Versie 1.1
Laatst Bijgewerkt 2021-11-12
Publicatiedatum 2021-11-12
Ontwikkelaar nsfwallext
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}