Reddit Filter

Filter subreddits from your reddit feed.

What is Reddit Filter?

Reddit Filter is a Chrome extension developed by prudhvirajs, and its main feature is "Filter subreddits from your reddit feed.".

Extension Screenshots

screenshot
screenshot

Download Reddit Filter Extension CRX File

Download Reddit Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Reddit Filter Reddit Filter
ID eifldojanodifhgcaodhilahkmcbojji
Official URL https://chromewebstore.google.com/detail/reddit-filter/eifldojanodifhgcaodhilahkmcbojji
Description Filter subreddits from your reddit feed.
File Size 43.83 KB
Installation Count 111
Current Version 0.1
Last Updated 2021-06-01
Publish Date 2021-05-31
Rating 3.29/5 Total 7 Ratings
Developer prudhvirajs
Email [email protected]
Payment Type free
Supported Languages 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
}