Unnoficial Reddit NSFW Filter for redesign

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

What is Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign is a Chrome extension developed by 07mcteaguepet, and its main feature is "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Unnoficial Reddit NSFW Filter for redesign Extension CRX File

Download Unnoficial Reddit NSFW Filter for redesign extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
Official URL https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Description This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
File Size 38.09 KB
Installation Count 38
Current Version 1.0
Last Updated 2018-05-04
Publish Date 2018-05-04
Rating 1.00/5 Total 3 Ratings
Developer 07mcteaguepet
Email [email protected]
Payment Type in_app
Extension Website https://github.com/PeterMcteague/RedditNSFWToggler
Help Page URL https://github.com/PeterMcteague/RedditNSFWToggler/issues
Supported Languages 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"
    }
}