Unnoficial Reddit NSFW Filter for redesign

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

Qu'est-ce que Unnoficial Reddit NSFW Filter for redesign ?

Unnoficial Reddit NSFW Filter for redesign est une extension Chrome développée par 07mcteaguepet, et sa fonction principale est "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Unnoficial Reddit NSFW Filter for redesign

Téléchargez les fichiers d'extension Unnoficial Reddit NSFW Filter for redesign au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
URL Officiel 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).
Taille du Fichier 38.09 KB
Nombre d'Installations 38
Version Actuelle 1.0
Dernière Mise à Jour 2018-05-04
Date de Publication 2018-05-04
Évaluation 1.00/5 Total 3 Évaluations
Développeur 07mcteaguepet
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://github.com/PeterMcteague/RedditNSFWToggler
URL de la Page d'Aide https://github.com/PeterMcteague/RedditNSFWToggler/issues
Langues Prises en Charge 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"
    }
}