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 |
Eメール | [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 } } |