NSFW All
Adds NSFW posts to the /r/all feed on reddit
Vad är NSFW All?
NSFW All är en Chrome-tillägg utvecklad av nsfwallext, och dess huvudfunktion är "Adds NSFW posts to the /r/all feed on reddit".
Tilläggsskärmbilder
Ladda ner NSFW All-förlängningens CRX-fil
Ladda ner NSFW All-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | kkgfmppgfjlomhijlklhiploceoekhgn |
Officiell webbadress | https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn |
Beskrivning | Adds NSFW posts to the /r/all feed on reddit |
Filstorlek | 9.38 KB |
Antal Installationer | 97 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2021-11-12 |
Publiceringsdatum | 2021-11-12 |
Utvecklare | nsfwallext |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |