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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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 } } |