OneLine

Focus on the words that matter.

Τι είναι το OneLine;

Το OneLine είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://useoneline.com, και η κύρια λειτουργία του είναι "Focus on the words that matter.".

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

screenshot
screenshot
screenshot

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

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

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

                        Have you ever been lost in a sea of words while reading online? OneLine is a reading aid for the web that increases your focus and reading efficiency by highlighting a single row of words. OneLine can be used on any website. If you have trouble reading, OneLine can help. OneLine comes preset with recommended colors proven to increase reading strength for dyslexic readers and allows you to customize the color of the highlighted line.

Features: 
 * Three recommended highlight colors proven to increase reading strength 
 * Full RGB color picker
 * Set and save your favorite colors. Favorites are saved and synced to your Google account. 
 * On/Off Toggle switch

Using OneLine: 
 * Click on the highlight icon in Chrome to view OneLine settings. 
 * To change color, click color settings, select the color from the picker or recommended buttons then click the bookmark button to save your favorites.
 * Move OneLine up and down with the arrow keys (or 'W' an 'S') to keep track of where you are. 

Report issues on the OneLine website: https://useoneline.com/#contact                    

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

Όνομα OneLine OneLine
ID pfdihdpobdolfdpoanloglnekonnhglh
Επίσημο URL https://chromewebstore.google.com/detail/oneline/pfdihdpobdolfdpoanloglnekonnhglh
Περιγραφή Focus on the words that matter.
Μέγεθος Αρχείου 477 KB
Αριθμός Εγκαταστάσεων 3,638
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2023-03-27
Ημερομηνία Δημοσίευσης 2020-05-31
Αξιολόγηση 4.31/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής https://useoneline.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://useoneline.com
Διεύθυνση URL της Σελίδας Βοήθειας https:/useoneline.com/#find-a-bug
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "OneLine",
    "version": "2.0",
    "description": "Focus on the words that matter.",
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "background": {
        "service_worker": "js\/background\/sw.js"
    },
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_title": "OneLine",
        "default_popup": "html\/defaultPopup.html",
        "default_icon": {
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/libraries\/splitting.min.js",
                "js\/libraries\/jquery-3.4.1.min.js",
                "js\/modules\/Line.js",
                "js\/modules\/Paragraph.js",
                "js\/modules\/ParagraphController.js",
                "js\/modules\/OneLine.js",
                "js\/OneLine-Main.js"
            ],
            "css": [
                ".\/css\/style.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/*.google.com\/search?*",
                "*:\/\/*.google.com\/scholar?*"
            ]
        }
    ]
}