Unnoficial Reddit NSFW Filter for redesign

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

Wat is Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign is een Chrome-extensie ontwikkeld door 07mcteaguepet, en de belangrijkste functie is "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Unnoficial Reddit NSFW Filter for redesign

Download Unnoficial Reddit NSFW Filter for redesign-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
Officiële URL https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Beschrijving This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Bestandsgrootte 38.09 KB
Aantal Installaties 38
Huidige Versie 1.0
Laatst Bijgewerkt 2018-05-04
Publicatiedatum 2018-05-04
Beoordeling 1.00/5 Totaal 3 Beoordelingen
Ontwikkelaar 07mcteaguepet
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://github.com/PeterMcteague/RedditNSFWToggler
Help Pagina-URL https://github.com/PeterMcteague/RedditNSFWToggler/issues
Ondersteunde Talen 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"
    }
}