Reddit Filter

Filter subreddits from your reddit feed.

Wat is Reddit Filter?

Reddit Filter is een Chrome-extensie ontwikkeld door prudhvirajs, en de belangrijkste functie is "Filter subreddits from your reddit feed.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Reddit Filter

Download Reddit Filter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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).                    

Basisinformatie over de Extensie

Naam Reddit Filter Reddit Filter
ID eifldojanodifhgcaodhilahkmcbojji
Officiële URL https://chromewebstore.google.com/detail/reddit-filter/eifldojanodifhgcaodhilahkmcbojji
Beschrijving Filter subreddits from your reddit feed.
Bestandsgrootte 43.83 KB
Aantal Installaties 111
Huidige Versie 0.1
Laatst Bijgewerkt 2021-06-01
Publicatiedatum 2021-05-31
Beoordeling 3.29/5 Totaal 7 Beoordelingen
Ontwikkelaar prudhvirajs
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}