Subreddit Search
Makes Reddit search within the current subreddit, instead of all of Reddit.
Τι είναι το Subreddit Search;
Το Subreddit Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ceiyne9, και η κύρια λειτουργία του είναι "Makes Reddit search within the current subreddit, instead of all of Reddit.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Subreddit Search
Λήψη αρχείων επέκτασης Subreddit Search σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Subreddit Search |
ID | jejcbolgmdmenjhhggmlonnopbcpaedb |
Επίσημο URL | https://chromewebstore.google.com/detail/subreddit-search/jejcbolgmdmenjhhggmlonnopbcpaedb |
Περιγραφή | Makes Reddit search within the current subreddit, instead of all of Reddit. |
Μέγεθος Αρχείου | 9.09 KB |
Αριθμός Εγκαταστάσεων | 44 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2020-09-23 |
Ημερομηνία Δημοσίευσης | 2020-09-22 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | ceiyne9 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |