Subreddit Search

Makes Reddit search within the current subreddit, instead of all of Reddit.

Subreddit Search란 무엇입니까?

Subreddit Search은(는) ceiyne9에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes Reddit search within the current subreddit, instead of all of Reddit."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Subreddit Search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A little while back, Reddit changed how search works.  It used to show you posts from the subreddit you're currently viewing when you did a search.  Now it shows results from all of Reddit first, and you have to click again to restrict the results to the current subreddit.  And if you prefer the search results to be sorted differently, you have to click again.

I finally got sick of having to go through 2 extra pages every time I searched on Reddit, so I made this Chrome extension.  Whatever subreddit you are viewing, when you search, it'll search that subreddit by default.  This extension also has an option that lets you choose the default sort order for search results.

This extension only works on the "new" Reddit.                    

확장 프로그램 기본 정보

이름 Subreddit Search Subreddit Search
ID jejcbolgmdmenjhhggmlonnopbcpaedb
공식 URL https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb
설명 Makes Reddit search within the current subreddit, instead of all of Reddit.
파일 크기 9.09 KB
설치 횟수 44
현재 버전 1.0
최근 업데이트 2020-09-23
출시 날짜 2020-09-22
평점 5.00/5 총 2 개의 평점
개발자 ceiyne9
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Subreddit Search",
    "description": "Makes Reddit search within the current subreddit, instead of all of Reddit.",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*",
                "http:\/\/www.reddit.com\/*"
            ],
            "js": [
                "Subreddit search.js"
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "128": "srs128.png"
    }
}