Subreddit Blocker

Block subreddits from feeds such as /r/all and /r/popular

Subreddit Blockerคืออะไร?

Subreddit Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย subredditblocker และคุณลักษณะหลักของมันคือ "Block subreddits from feeds such as /r/all and /r/popular"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Subreddit Blocker

ดาวน์โหลดไฟล์ส่วนขยาย Subreddit Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension block subreddits from feeds such as /r/all and /r/popular.  

On reddit.com/r/all and reddit.com/r/popular you see a variety of "cards" on these sites and these cards come from a variety of different "subreddits".  On the website there is currently no way to alter which cards you see on this site, it's determined by reddit itself.

Using this extension you can add "subreddits" which will then be blocked from the website and so when you go to reddit.com/r/all and reddit.com/r/popular you will no longer see the "cards" of these blocked "subreddits".                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Subreddit Blocker Subreddit Blocker
ID fdnfhjijilklnkkinbjjhmhjkkkekfcp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/subreddit-blocker/fdnfhjijilklnkkinbjjhmhjkkkekfcp
คำอธิบาย Block subreddits from feeds such as /r/all and /r/popular
ขนาดไฟล์ 43.95 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 1.3.1
อัปเดตครั้งล่าสุด 2024-02-27
วันที่เผยแพร่ 2022-12-29
คะแนน 4.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา subredditblocker
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Subreddit Blocker",
    "version": "1.3.1",
    "action": {
        "default_popup": "index.html",
        "default_title": "Subreddit Blocker"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "default_locale": "en",
    "description": "Block subreddits from feeds such as \/r\/all and \/r\/popular",
    "author": "Shea Meyers",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/",
                "https:\/\/www.reddit.com\/r\/all\/",
                "https:\/\/www.reddit.com\/r\/popular\/",
                "https:\/\/old.reddit.com\/",
                "https:\/\/old.reddit.com\/r\/all\/",
                "https:\/\/old.reddit.com\/r\/popular\/"
            ],
            "js": [
                "block-subreddit-cards.js"
            ]
        }
    ]
}