Unnoficial Reddit NSFW Filter for redesign

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

Vad är Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign är en Chrome-tillägg utvecklad av 07mcteaguepet, och dess huvudfunktion är "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Unnoficial Reddit NSFW Filter for redesign-förlängningens CRX-fil

Ladda ner Unnoficial Reddit NSFW Filter for redesign-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
Officiell webbadress https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Beskrivning This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Filstorlek 38.09 KB
Antal Installationer 38
Aktuell Version 1.0
Senast Uppdaterad 2018-05-04
Publiceringsdatum 2018-05-04
Betyg 1.00/5 Totalt 3 Betyg
Utvecklare 07mcteaguepet
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://github.com/PeterMcteague/RedditNSFWToggler
Hjälpsida URL https://github.com/PeterMcteague/RedditNSFWToggler/issues
Stödda Språk 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"
    }
}