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.”。
擴展截圖
下載Subreddit Search擴展crx文件
下載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 |
ID | jejcbolgmdmenjhhggmlonnopbcpaedb |
官方網址 | 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" } } |