Subreddit Search

Makes Reddit search within the current subreddit, instead of all of Reddit.

O que é Subreddit Search?

Subreddit Search é uma extensão do Chrome desenvolvida por ceiyne9, e sua principal característica é "Makes Reddit search within the current subreddit, instead of all of Reddit.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Subreddit Search

Baixe arquivos de extensão Subreddit Search no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Subreddit Search Subreddit Search
ID jejcbolgmdmenjhhggmlonnopbcpaedb
URL Oficial https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb
Descrição Makes Reddit search within the current subreddit, instead of all of Reddit.
Tamanho do Arquivo 9.09 KB
Contagem de Instalações 44
Versão Atual 1.0
Última Atualização 2020-09-23
Data de Publicação 2020-09-22
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor ceiyne9
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}