NSFW All

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

NSFW All là gì?

NSFW All là một tiện ích mở rộng Chrome được phát triển bởi nsfwallext, và tính năng chính của nó là "Adds NSFW posts to the /r/all feed on reddit".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng NSFW All

Tải xuống các tệp mở rộng NSFW All dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NSFW All NSFW All
ID kkgfmppgfjlomhijlklhiploceoekhgn
URL Chính Thức https://chrome.google.com/webstore/detail/nsfw-all/kkgfmppgfjlomhijlklhiploceoekhgn
Mô tả Adds NSFW posts to the /r/all feed on reddit
Kích Thước Tệp 9.38 KB
Số Lần Cài Đặt 97
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2021-11-12
Ngày Phát Hành 2021-11-12
Nhà Phát Triển nsfwallext
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}