Unnoficial Reddit NSFW Filter for redesign

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

Was ist Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign ist eine Chrome-Erweiterung, die von 07mcteaguepet entwickelt wurde, und ihr Hauptmerkmal ist "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Unnoficial Reddit NSFW Filter for redesign-Erweiterungs-CRX-Datei herunterladen

Laden Sie Unnoficial Reddit NSFW Filter for redesign-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
Offizielle URL https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Beschreibung This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Dateigröße 38.09 KB
Installationsanzahl 38
Aktuelle Version 1.0
Letztes Update 2018-05-04
Veröffentlichungsdatum 2018-05-04
Bewertung 1.00/5 Insgesamt 3 Bewertungen
Entwickler 07mcteaguepet
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://github.com/PeterMcteague/RedditNSFWToggler
Hilfeseite URL https://github.com/PeterMcteague/RedditNSFWToggler/issues
Unterstützte Sprachen 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"
    }
}