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 |
公式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 |
Eメール | [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" } } |