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 - это расширение Chrome, разработанное A.Sandin, и его основная функция - "Allow Reddit's top sort to use other time durations than the default ones.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Custom top sort for Reddit

Скачайте файлы расширений Custom top sort for Reddit в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        *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
    }
}