NSFW All

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

Qu'est-ce que NSFW All ?

NSFW All est une extension Chrome développée par nsfwallext, et sa fonction principale est "Adds NSFW posts to the /r/all feed on reddit".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension NSFW All

Téléchargez les fichiers d'extension NSFW All au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom NSFW All NSFW All
ID kkgfmppgfjlomhijlklhiploceoekhgn
URL Officiel https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn
Description Adds NSFW posts to the /r/all feed on reddit
Taille du Fichier 9.38 KB
Nombre d'Installations 97
Version Actuelle 1.1
Dernière Mise à Jour 2021-11-12
Date de Publication 2021-11-12
Développeur nsfwallext
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}