NSFW All

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

Τι είναι το NSFW All;

Το NSFW All είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον nsfwallext, και η κύρια λειτουργία του είναι "Adds NSFW posts to the /r/all feed on reddit".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης NSFW All

Λήψη αρχείων επέκτασης NSFW All σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα NSFW All NSFW All
ID kkgfmppgfjlomhijlklhiploceoekhgn
Επίσημο URL https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn
Περιγραφή Adds NSFW posts to the /r/all feed on reddit
Μέγεθος Αρχείου 9.38 KB
Αριθμός Εγκαταστάσεων 97
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2021-11-12
Ημερομηνία Δημοσίευσης 2021-11-12
Προγραμματιστής nsfwallext
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    }
}