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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}