Subreddit Search
Makes Reddit search within the current subreddit, instead of all of Reddit.
Subreddit Search क्या है?
Subreddit Search ceiyne9 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes Reddit search within the current subreddit, instead of all of Reddit."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Subreddit Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |