Subreddit Search

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

Subreddit Searchคืออะไร?

Subreddit Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ceiyne9 และคุณลักษณะหลักของมันคือ "Makes Reddit search within the current subreddit, instead of all of Reddit."

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

screenshot
screenshot

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

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

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

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