Subreddit Search
Makes Reddit search within the current subreddit, instead of all of Reddit.
¿Qué es Subreddit Search?
Subreddit Search es una extensión de Chrome desarrollada por ceiyne9, y su función principal es "Makes Reddit search within the current subreddit, instead of all of Reddit.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Subreddit Search
Descarga archivos de extensión Subreddit Search en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Subreddit Search |
ID | jejcbolgmdmenjhhggmlonnopbcpaedb |
URL Oficial | https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb |
Descripción | Makes Reddit search within the current subreddit, instead of all of Reddit. |
Tamaño del Archivo | 9.09 KB |
Cantidad de Instalaciones | 44 |
Versión Actual | 1.0 |
Última Actualización | 2020-09-23 |
Fecha de Publicación | 2020-09-22 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | ceiyne9 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |