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开发的Chrome扩展程序,该扩展的主要功能是“Allow Reddit's top sort to use other time durations than the default ones.”。
扩展截图
下载Custom top sort for Reddit扩展crx文件
下载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 |
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 } } |