Eye Read: Reading Assistant

Read faster, improve focus. Anywhere on the internet. Simple, lightweight, just works.

ما هو Eye Read: Reading Assistant؟

Eye Read: Reading Assistant هو إضافة Chrome تم تطويرها بواسطة Eye Read، والميزة الرئيسية لها هي "Read faster, improve focus. Anywhere on the internet. Simple, lightweight, just works.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Eye Read: Reading Assistant

قم بتنزيل ملفات الامتداد Eye Read: Reading Assistant بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Eye Read is a web extension that unlocks the power of focused reading with a click of a button on any web page.

We built Eye Read to help people become more productive at school and work. It is especially useful for neurodivergent population, e.g. with ADHD and ADD.

Eye Read uses a custom algorithm that bolds a portion of each word to help guide your eyes over the text. This augmented reading technique enables your brain to autocomplete the words, which translates into improved focus and faster reading. 

Key features:
⭐️ Simple to use - designed to be intuitive and work out of the box.
⭐️ Lightweight and fast - doesn't slow down your web browsing experience or break pages.
⭐️ Customizable - noise level control allows you to adjust how much content to highlight on the page.
⭐️ Works where it matters - keep using M365 Office Suite apps, such as Word or PowerPoint, browse social media apps, or read books in Google Play Books. 
⭐️ Does not collect any personal data                    

معلومات أساسية عن التمديد

الاسم Eye Read: Reading Assistant Eye Read: Reading Assistant
ID nimilnpomamlmmnnmijddgbfhabbokkk
عنوان URL الرسمي https://chromewebstore.google.com/detail/eye-read-reading-assistan/nimilnpomamlmmnnmijddgbfhabbokkk
الوصف Read faster, improve focus. Anywhere on the internet. Simple, lightweight, just works.
حجم الملف 372 KB
عدد التثبيتات 188
النسخة الحالية 1.1
آخر تحديث 2023-06-08
تاريخ النشر 2023-05-10
تقييم 5.00/5 مجموع تقييمات 1
المطور Eye Read
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/Eye-Read/EyeRead
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Eye Read: Reading Assistant",
    "description": "Read faster, improve focus. Anywhere on the internet. Simple, lightweight, just works.",
    "version": "1.1",
    "content_security_policy": {
        "extension_pages": "default-src 'self'; frame-ancestors 'none';"
    },
    "icons": {
        "128": ".\/images\/eye-read-icon-square.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "toggle-highlighting": {
            "suggested_key": {
                "default": "Alt+Period"
            },
            "description": "Toggles Eye Read plugin"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": ".\/images\/eye-read-icon-square.png"
    },
    "manifest_version": 3
}