Unnoficial Reddit NSFW Filter for redesign

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

O que é Unnoficial Reddit NSFW Filter for redesign?

Unnoficial Reddit NSFW Filter for redesign é uma extensão do Chrome desenvolvida por 07mcteaguepet, e sua principal característica é "This extension removes NSFW items from reddit or makes them the only ones visible (your choice).".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Unnoficial Reddit NSFW Filter for redesign

Baixe arquivos de extensão Unnoficial Reddit NSFW Filter for redesign no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Unnoficial Reddit NSFW Filter for redesign Unnoficial Reddit NSFW Filter for redesign
ID jjnnbblbdeabcdgifodkjpalefmgidam
URL Oficial https://chrome.google.com/webstore/detail/unnoficial-reddit-nsfw-fi/jjnnbblbdeabcdgifodkjpalefmgidam
Descrição This extension removes NSFW items from reddit or makes them the only ones visible (your choice).
Tamanho do Arquivo 38.09 KB
Contagem de Instalações 38
Versão Atual 1.0
Última Atualização 2018-05-04
Data de Publicação 2018-05-04
Classificação 1.00/5 Total de 3 Avaliações
Desenvolvedor 07mcteaguepet
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão https://github.com/PeterMcteague/RedditNSFWToggler
URL da Página de Ajuda https://github.com/PeterMcteague/RedditNSFWToggler/issues
Idiomas Suportados 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"
    }
}