Custom top sort for Reddit

Allow Reddit's top sort to use other time durations than the default ones.

Custom top sort for Reddit क्या है?

Custom top sort for Reddit A.Sandin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allow Reddit's top sort to use other time durations than the default ones."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Custom top sort for Reddit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        *After an update on Reddit's part, this extension stopped working and I've been unable to find a workaround. It is still functional on old.reddit.com*

Tired of only Reddit's top sort only using the last hour/day/week/month/year? With Custom Top Sort you can get the top posts from the last three days, 21 hours, 7 months or whatever you want!

Custom top sort works with both old Reddit and the redesign.

Note: Due to this extension using Reddit's default sort and then removing old posts that are too old, the result will be quite empty when the time interval uses small numbers. E.g. top posts from the last 2 hours will yield almost no results. It will fetch posts from the last day and filter posts that are 2-24 hours old, which vastly outnumber the 0-2 hour ones, and will remove virtually every post.                    

एक्सटेंशन की मूल जानकारी

नाम Custom top sort for Reddit Custom top sort for Reddit
ID ppcdmieefbelokaacilcciackbocjghj
आधिकारिक URL https://chromewebstore.google.com/detail/custom-top-sort-for-reddi/ppcdmieefbelokaacilcciackbocjghj
विवरण Allow Reddit's top sort to use other time durations than the default ones.
फ़ाइल का आकार 19.77 KB
स्थापना संख्या 346
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2023-03-25
प्रकाशन तिथि 2021-07-28
रेटिंग 3.75/5 कुल 4 रेटिंग्स
डेवलपर A.Sandin
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/arvidsandin/custom-top-sort-for-reddit
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom top sort for Reddit",
    "version": "0.1.3",
    "description": "Allow Reddit's top sort to use other time durations than the default ones.",
    "icons": {
        "48": "icon\/icon_48.png",
        "96": "icon\/icon_96.png",
        "128": "icon\/icon_128_padding.png"
    },
    "permissions": [
        "*:\/\/*.reddit.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "js": [
                "oldReddit.js",
                "newReddit.js",
                "main.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    }
}