Reddit Filter

Filter subreddits from your reddit feed.

O que é Reddit Filter?

Reddit Filter é uma extensão do Chrome desenvolvida por prudhvirajs, e sua principal característica é "Filter subreddits from your reddit feed.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Reddit Filter

Baixe arquivos de extensão Reddit Filter 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

                        Filter subreddits from your reddit feed.
If you don't want to see certain subreddits in your feeds, click a simple close button on top right corner of the post to filter any future posts from the subreddit.
You can also manage the subreddits being filtered.
This also remove any promoted posts (ads).                    

Informações Básicas da Extensão

Nome Reddit Filter Reddit Filter
ID eifldojanodifhgcaodhilahkmcbojji
URL Oficial https://chromewebstore.google.com/detail/reddit-filter/eifldojanodifhgcaodhilahkmcbojji
Descrição Filter subreddits from your reddit feed.
Tamanho do Arquivo 43.83 KB
Contagem de Instalações 111
Versão Atual 0.1
Última Atualização 2021-06-01
Data de Publicação 2021-05-31
Classificação 3.29/5 Total de 7 Avaliações
Desenvolvedor prudhvirajs
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reddit Filter",
    "description": "Filter subreddits from your reddit feed.",
    "version": "0.1",
    "permissions": [
        "storage"
    ],
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/r\/popular\/",
                "https:\/\/www.reddit.com\/",
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "content.js",
                "jquery-3.6.0.min.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "\/images\/RF16.png",
        "32": "\/images\/RF32.png",
        "48": "\/images\/RF48.png",
        "128": "\/images\/RF128.png"
    },
    "manifest_version": 2
}