Subreddit Search
Makes Reddit search within the current subreddit, instead of all of Reddit.
Qu'est-ce que Subreddit Search ?
Subreddit Search est une extension Chrome développée par ceiyne9, et sa fonction principale est "Makes Reddit search within the current subreddit, instead of all of Reddit.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Subreddit Search
Téléchargez les fichiers d'extension Subreddit Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Subreddit Search |
ID | jejcbolgmdmenjhhggmlonnopbcpaedb |
URL Officiel | https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb |
Description | Makes Reddit search within the current subreddit, instead of all of Reddit. |
Taille du Fichier | 9.09 KB |
Nombre d'Installations | 44 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-09-23 |
Date de Publication | 2020-09-22 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | ceiyne9 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |