NSFW All
Adds NSFW posts to the /r/all feed on reddit
Cos'è NSFW All?
NSFW All è un'estensione di Chrome sviluppata da nsfwallext, e la sua funzione principale è "Adds NSFW posts to the /r/all feed on reddit".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NSFW All
Scarica i file di estensione NSFW All in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | kkgfmppgfjlomhijlklhiploceoekhgn |
URL Ufficiale | https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn |
Descrizione | Adds NSFW posts to the /r/all feed on reddit |
Dimensione del File | 9.38 KB |
Conteggio Installazioni | 97 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2021-11-12 |
Data di Pubblicazione | 2021-11-12 |
Sviluppatore | nsfwallext |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |