NSFW All
Adds NSFW posts to the /r/all feed on reddit
Co je NSFW All?
NSFW All je rozšíření Chrome vyvinuté nsfwallext, a jeho hlavní funkcí je „Adds NSFW posts to the /r/all feed on reddit“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření NSFW All
Stáhněte si soubory rozšíření NSFW All ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | kkgfmppgfjlomhijlklhiploceoekhgn |
Oficiální URL | https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn |
Popis | Adds NSFW posts to the /r/all feed on reddit |
Velikost souboru | 9.38 KB |
Počet instalací | 97 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2021-11-12 |
Datum Vydání | 2021-11-12 |
Vývojář | nsfwallext |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } |