Subreddit Search
Makes Reddit search within the current subreddit, instead of all of Reddit.
Vad är Subreddit Search?
Subreddit Search är en Chrome-tillägg utvecklad av ceiyne9, och dess huvudfunktion är "Makes Reddit search within the current subreddit, instead of all of Reddit.".
Tilläggsskärmbilder
Ladda ner Subreddit Search-förlängningens CRX-fil
Ladda ner Subreddit Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Subreddit Search |
ID | jejcbolgmdmenjhhggmlonnopbcpaedb |
Officiell webbadress | https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb |
Beskrivning | Makes Reddit search within the current subreddit, instead of all of Reddit. |
Filstorlek | 9.09 KB |
Antal Installationer | 44 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-09-23 |
Publiceringsdatum | 2020-09-22 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | ceiyne9 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |