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