Unnoficial Reddit NSFW Filter for redesign

This extension removes NSFW items from reddit or makes them the only ones visible (your choice).

Unnoficial Reddit NSFW Filter for redesignคืออะไร?

Unnoficial Reddit NSFW Filter for redesign เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 07mcteaguepet และคุณลักษณะหลักของมันคือ "This extension removes NSFW items from reddit or makes them the only ones visible (your choice)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Unnoficial Reddit NSFW Filter for redesign

ดาวน์โหลดไฟล์ส่วนขยาย Unnoficial Reddit NSFW Filter for redesign ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension allows you to choose to hide NSFW items from reddit or make them the only ones visible, or neither.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
คำอธิบาย This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
ขนาดไฟล์ 38.09 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-05-04
วันที่เผยแพร่ 2018-05-04
คะแนน 1.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา 07mcteaguepet
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://github.com/PeterMcteague/RedditNSFWToggler
URL หน้าช่วยเหลือ https://github.com/PeterMcteague/RedditNSFWToggler/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unnoficial Reddit NSFW Filter for redesign",
    "version": "1.0",
    "options_page": "src\/options\/options.html",
    "options_ui": {
        "page": "src\/options\/options.html",
        "open_in_tab": false
    },
    "manifest_version": 2,
    "description": "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).",
    "author": "Peter McTeague",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.reddit.com\/*",
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "options",
        "popup": "src\/options\/options.html",
        "default_popup": "src\/options\/options.html"
    }
}