Subreddit Blocker

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

什麼是Subreddit Blocker?

Subreddit Blocker是由subredditblocker開發的Chrome擴展程式,該擴展的主要功能是“Block subreddits from feeds such as /r/all and /r/popular”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Subreddit Blocker擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}