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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Toolbox development team และคุณลักษณะหลักของมันคือ "Takes any text post and reformats it to a pleasant to read format."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย readReddit, Readable text posts on reddit

ดาวน์โหลดไฟล์ส่วนขยาย readReddit, Readable text posts on reddit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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": [
                ""
            ]
        }
    ]
}