Read Easy

An easy to use text reader.

Read Easyคืออะไร?

Read Easy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://giteshdalal.com และคุณลักษณะหลักของมันคือ "An easy to use text reader."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Read Easy

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

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

                        Removes clutter and improves readability. Lets you focus on what you want to read. Great for reading articles, web novels and blog posts.

"Focus just on reading. I can handle the rest." - Gitesh Dalal

Note : Read Easy works best for web pages that have a lot of content.

# Features
1. Text to Speech (TTS) (Experimental)
     a. Easy to use Speech controls
     b. Highlight line & paragraph
     c. Click to navigate
2. Simple, clean and easy to use
3. Supports light and dark themes
4. Gives user control over font and text styling (Monospace, Serif, Sans-Serif, Open Dyslexic)
5. Keyboard shortcuts for all actions
6. Navigate to next or previous article (Experimental)
7. Dictionary - Select a word to lookup definition

## Change log
#### v 1.0.1 
1. Fixed capslock issue
2. Improved readable text extraction
3. Updated app icon
#### v 1.0.2 
1. Fixed bugs related to navigation
2. Added dictionary functionality
3. Greatly improved readable text extraction
4. Fixed bugs related to TTS feature
#### v 1.1.0
1. Added dictionary functionality (experimental)
2. Improved on TTS features
3. TTS feature - Pause playback on scroll
#### v 1.1.1
1. Bug fix related to scrolling in TTS mode
2. Improved redability in TTS mode
3. Improved redability for tables and lists
#### v 1.1.2
1. Improved redability for tables and lists
2. Added keyboard navigation for Next and Previous Article
3. Improved auto scroll
#### v 1.1.3
1. Minor fix for improving decimal numbers readability
2. Bug fixes related to article extraction
#### v 1.1.4
1. Redefined TTS navigation logic
2. Bug fixes related to TTS
#### v 1.2.0
1. Added support for Dyslexic font
2. Bug fixes related to scroll                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Read Easy Read Easy
ID nnfkkakpbcbbbjiiiieocdeoomoepmja
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/read-easy/nnfkkakpbcbbbjiiiieocdeoomoepmja
คำอธิบาย An easy to use text reader.
ขนาดไฟล์ 1.77 MB
จำนวนการติดตั้ง 415
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2020-09-06
วันที่เผยแพร่ 2020-08-18
คะแนน 4.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://giteshdalal.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://giteshdalal.com/
URL หน้าช่วยเหลือ https://forms.gle/qRomYFtNmgCZ1Gw46
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Read Easy",
    "description": "An easy to use text reader.",
    "author": "giteshdalal.com",
    "version": "1.2.0",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "activeTab",
        "declarativeContent",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "optional_permissions": [
        "*:\/\/*\/*",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "src\/background\/configuration.js",
            "src\/background\/actions.js"
        ],
        "persistent": false
    },
    "page_action": {
        "browser_style": true,
        "default_icon": {
            "16": "assets\/images\/logo_16.png",
            "32": "assets\/images\/logo_32.png"
        }
    },
    "icons": {
        "16": "assets\/images\/logo_16.png",
        "32": "assets\/images\/logo_32.png",
        "48": "assets\/images\/logo_48.png",
        "128": "assets\/images\/logo_128.png"
    },
    "commands": {
        "toggle-extension": {
            "suggested_key": {
                "default": "Alt+R",
                "mac": "Alt+R"
            },
            "description": "Toogle extension"
        }
    }
}