Subreddit Search

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

Wat is Subreddit Search?

Subreddit Search is een Chrome-extensie ontwikkeld door ceiyne9, en de belangrijkste functie is "Makes Reddit search within the current subreddit, instead of all of Reddit.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Subreddit Search

Download Subreddit Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Subreddit Search Subreddit Search
ID jejcbolgmdmenjhhggmlonnopbcpaedb
Officiële URL https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb
Beschrijving Makes Reddit search within the current subreddit, instead of all of Reddit.
Bestandsgrootte 9.09 KB
Aantal Installaties 44
Huidige Versie 1.0
Laatst Bijgewerkt 2020-09-23
Publicatiedatum 2020-09-22
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar ceiyne9
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}