Unnoficial Reddit NSFW Filter for redesign

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

Co to jest Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign to rozszerzenie Chrome opracowane przez 07mcteaguepet, a jego główną funkcją jest „This extension removes NSFW items from reddit or makes them the only ones visible (your choice).”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Unnoficial Reddit NSFW Filter for redesign

Pobierz pliki rozszerzeń Unnoficial Reddit NSFW Filter for redesign w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
Oficjalny URL https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Opis This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Rozmiar pliku 38.09 KB
Liczba instalacji 38
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-05-04
Data Publikacji 2018-05-04
Ocena 1.00/5 Łącznie 3 Oceny
Deweloper 07mcteaguepet
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://github.com/PeterMcteague/RedditNSFWToggler
Adres URL Strony Pomocy https://github.com/PeterMcteague/RedditNSFWToggler/issues
Obsługiwane Języki 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"
    }
}