Reddit Filter

Filter subreddits from your reddit feed.

什么是Reddit Filter?

Reddit Filter是由prudhvirajs开发的Chrome扩展程序,该扩展的主要功能是“Filter subreddits from your reddit feed.”。

扩展截图

screenshot
screenshot

下载Reddit Filter扩展crx文件

下载Reddit Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Reddit Filter Reddit Filter
ID eifldojanodifhgcaodhilahkmcbojji
官方URL https://chromewebstore.google.com/detail/reddit-filter/eifldojanodifhgcaodhilahkmcbojji
简介 Filter subreddits from your reddit feed.
文件大小 43.83 KB
安装次数 111
当前版本 0.1
更新时间 2021-06-01
上架时间 2021-05-31
评分 3.29/5 共7次评分
开发者 prudhvirajs
电子邮箱 [email protected]
付费类型 free
支持的语言 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
}