Unnoficial Reddit NSFW Filter for redesign

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

Hvad er Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign er en Chrome-udvidelse udviklet af 07mcteaguepet, og dens hovedfunktion er "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Unnoficial Reddit NSFW Filter for redesign-udvidelses-CRX-fil

Download Unnoficial Reddit NSFW Filter for redesign-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
Officiel URL https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Beskrivelse This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Filstørrelse 38.09 KB
Antal Installationer 38
Nuværende Version 1.0
Senest Opdateret 2018-05-04
Udgivelsesdato 2018-05-04
Bedømmelse 1.00/5 Samlet 3 Bedømmelser
Udvikler 07mcteaguepet
E-mail [email protected]
Betalingsmetode in_app
Udvidelseswebsted https://github.com/PeterMcteague/RedditNSFWToggler
Hjælpeside-URL https://github.com/PeterMcteague/RedditNSFWToggler/issues
Understøttede Sprog 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"
    }
}