readReddit, Readable text posts on reddit
Takes any text post and reformats it to a pleasant to read format.
readReddit, Readable text posts on reddit란 무엇입니까?
readReddit, Readable text posts on reddit은(는) Toolbox development team에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Takes any text post and reformats it to a pleasant to read format."입니다.
확장 프로그램 스크린샷
readReddit, Readable text posts on reddit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
readReddit adds a pleasant and clutter free reading mode for reddit text posts and comments. I greatly enjoy reading stories that are posted on subreddits like /r/WritingPrompts and /r/HFY. What I like less is reading these stories on my computer. Both old and new reddit put too much clutter around text and the formatting itself always feels less than ideal for long pieces of text. A while ago I had a realization "I can fix this!", which is what I promptly set out to do. I started out with a bit of custom css, then I realized I could do better with some scripting. That sort of spiraled out of control and before I knew it I had made it in a full blown browser extension. The extension takes text posts or each top level comment and transforms the text from the cluttered reddit format into a nice clutter free and better formatted overlay (see the screenshots). It is even somewhat "smart" about how it grabs the text, so when you encounter one of those authors who needed to continue in the comments it will also include the text from those comments!
확장 프로그램 기본 정보
이름 | readReddit, Readable text posts on reddit |
ID | kpffhggoghnmcbofgjdccdgflkodakkj |
공식 URL | https://chromewebstore.google.com/detail/readreddit-readable-text/kpffhggoghnmcbofgjdccdgflkodakkj |
설명 | Takes any text post and reformats it to a pleasant to read format. |
파일 크기 | 87 KB |
설치 횟수 | 547 |
현재 버전 | 0.15.0 |
최근 업데이트 | 2022-05-21 |
출시 날짜 | 2019-08-09 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | Toolbox development team |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://www.reddit.com/r/toolbox/wiki/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "readReddit, Readable text posts on reddit", "author": "Creesch", "short_name": "readReddit", "description": "Takes any text post and reformats it to a pleasant to read format.", "version": "0.15.0", "options_ui": { "page": "data\/options\/options.html", "open_in_tab": true }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.reddit.com\/" ], "icons": { "16": "data\/images\/icon16.png", "48": "data\/images\/icon48.png", "128": "data\/images\/icon128.png" }, "background": { "service_worker": "data\/background\/background.js" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.reddit.com\/*" ], "css": [ "data\/styles\/global.css", "data\/styles\/main.css", "data\/styles\/light.css", "data\/styles\/dark.css" ], "js": [ "data\/libs\/jquery-3.3.1.min.js", "data\/libs\/jquery.viewportchecker.js", "data\/libs\/readingtime.js", "data\/libs\/purify.js", "data\/listener.js", "data\/utils.js", "data\/ui.js", "data\/main.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/data\/images\/icon48.png", "\/data\/images\/moon25.png", "\/data\/images\/sun25.png" ], "matches": [ " |