Reddit Filter

Filter subreddits from your reddit feed.

Reddit Filter là gì?

Reddit Filter là một tiện ích mở rộng Chrome được phát triển bởi prudhvirajs, và tính năng chính của nó là "Filter subreddits from your reddit feed.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Reddit Filter

Tải xuống các tệp mở rộng Reddit Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Reddit Filter Reddit Filter
ID eifldojanodifhgcaodhilahkmcbojji
URL Chính Thức https://chromewebstore.google.com/detail/reddit-filter/eifldojanodifhgcaodhilahkmcbojji
Mô tả Filter subreddits from your reddit feed.
Kích Thước Tệp 43.83 KB
Số Lần Cài Đặt 111
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2021-06-01
Ngày Phát Hành 2021-05-31
Đánh Giá 3.29/5 Tổng số 7 Đánh Giá
Nhà Phát Triển prudhvirajs
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}