NSFW All
Adds NSFW posts to the /r/all feed on reddit
Was ist NSFW All?
NSFW All ist eine Chrome-Erweiterung, die von nsfwallext entwickelt wurde, und ihr Hauptmerkmal ist "Adds NSFW posts to the /r/all feed on reddit".
Erweiterungsscreenshots
NSFW All-Erweiterungs-CRX-Datei herunterladen
Laden Sie NSFW All-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | kkgfmppgfjlomhijlklhiploceoekhgn |
Offizielle URL | https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn |
Beschreibung | Adds NSFW posts to the /r/all feed on reddit |
Dateigröße | 9.38 KB |
Installationsanzahl | 97 |
Aktuelle Version | 1.1 |
Letztes Update | 2021-11-12 |
Veröffentlichungsdatum | 2021-11-12 |
Entwickler | nsfwallext |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |