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
Eメール [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
}