NSFW All

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

Co to jest NSFW All?

NSFW All to rozszerzenie Chrome opracowane przez nsfwallext, a jego główną funkcją jest „Adds NSFW posts to the /r/all feed on reddit”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NSFW All

Pobierz pliki rozszerzeń NSFW All w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa NSFW All NSFW All
ID kkgfmppgfjlomhijlklhiploceoekhgn
Oficjalny URL https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn
Opis Adds NSFW posts to the /r/all feed on reddit
Rozmiar pliku 9.38 KB
Liczba instalacji 97
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2021-11-12
Data Publikacji 2021-11-12
Deweloper nsfwallext
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}