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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}