Reading Assist

A Chrome extension that selects and highlights sentences as visual cues for digital reading.

Τι είναι το Reading Assist;

Το Reading Assist είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον llj0824, και η κύρια λειτουργία του είναι "A Chrome extension that selects and highlights sentences as visual cues for digital reading.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Reading Assist

Λήψη αρχείων επέκτασης Reading Assist σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        # Chrome Extension for Seamless Reading using Visual Pointer Cue.

Are you tired of scrolling through long digital documents or books and losing track of where you are? Do you ever find yourself re-reading the same sentence multiple times because you lost your spot?

We have a solution for you. We developed a **feature that selects and highlights the current sentence being read** as a visual cue for readers. This feature enhances the reading experience by providing clear cues on the sentence you are currently reading, helping you to maintain focus and engagement with the content.

## Video Demo


To see our feature in action and better understand its benefits, watch our video demonstration. This demo showcases how our sentence selection and highlighting feature functions and how it can significantly improve your reading focus.

By clicking on the image above or following this link, you can access our video demo: 

https://www.youtube.com/watch?v=g0j8K9ukuGo 
or
https://www.loom.com/share/b17f9d891f3b408d8ff52fb7a2f81a45

## Usage

Our feature is easy to use and seamlessly integrates with existing web applications. To select a sentence in an article, simply highlight a word or phrase, press **space bar**, and our feature will determine the current sentence based on cursor position and surrounding text. The chosen sentence will be highlighted in real-time as you scroll through the document.

We are excited to introduce our new feature that selects and highlights sentences as visual cues for digital reading. **Try it now** and see how it can improve your reading experience.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Reading Assist Reading Assist
ID mdpcpdnelomalncmjbdcnledmmfepkco
Επίσημο URL https://chromewebstore.google.com/detail/reading-assist/mdpcpdnelomalncmjbdcnledmmfepkco
Περιγραφή A Chrome extension that selects and highlights sentences as visual cues for digital reading.
Μέγεθος Αρχείου 1.77 MB
Αριθμός Εγκαταστάσεων 36
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2023-05-11
Ημερομηνία Δημοσίευσης 2023-04-10
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής llj0824
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/llj0824/readingAssist
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Reading Assist",
    "version": "1.1",
    "description": "A Chrome extension that selects and highlights sentences as visual cues for digital reading.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "appIcon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "main.js"
            ]
        }
    ],
    "icons": {
        "48": "appIcon.png",
        "128": "appIcon.png"
    }
}