Subreddit Search
Makes Reddit search within the current subreddit, instead of all of Reddit.
Cos'è Subreddit Search?
Subreddit Search è un'estensione di Chrome sviluppata da ceiyne9, e la sua funzione principale è "Makes Reddit search within the current subreddit, instead of all of Reddit.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Subreddit Search
Scarica i file di estensione Subreddit Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Subreddit Search |
ID | jejcbolgmdmenjhhggmlonnopbcpaedb |
URL Ufficiale | https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb |
Descrizione | Makes Reddit search within the current subreddit, instead of all of Reddit. |
Dimensione del File | 9.09 KB |
Conteggio Installazioni | 44 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-09-23 |
Data di Pubblicazione | 2020-09-22 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | ceiyne9 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |