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"
    }
}