Serial Speed Reader

A program that will serially display selected text word by word.

Was ist Serial Speed Reader?

Serial Speed Reader ist eine Chrome-Erweiterung, die von Sam Larison entwickelt wurde, und ihr Hauptmerkmal ist "A program that will serially display selected text word by word.".

Erweiterungsscreenshots

screenshot
screenshot

Serial Speed Reader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Serial Speed Reader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension will display the selected text, word by word, so that you can read it without moving your eyeballs.  Not for the faint of heart, but you may adjust the delay between words and the per letter delay to slow down the text display.

You may have to refresh the page when you first install this extension to get it working.  

PLEASE report any bugs or problems.  This is BETA but I would appreciate it that you do not treat it like a finished product until it's done.  I will make improvements.

A unique icon is in the works, sorry about that!                    

Grundlegende Informationen zur Erweiterung

Name Serial Speed Reader Serial Speed Reader
ID clmnbpnfedojoahgmdoohcbgclkcbofa
Offizielle URL https://chromewebstore.google.com/detail/serial-speed-reader/clmnbpnfedojoahgmdoohcbgclkcbofa
Beschreibung A program that will serially display selected text word by word.
Dateigröße 144 KB
Installationsanzahl 138
Aktuelle Version 0.0.1.5
Letztes Update 2023-06-19
Veröffentlichungsdatum 2019-09-06
Bewertung 3.17/5 Insgesamt 6 Bewertungen
Entwickler Sam Larison
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL http://vidzbigger.com/index.php?v=contact&browserinfo=SerialSpeedReader%0D%0A%0D%0A&BugReportInfo=true
URL der Datenschutzrichtlinien-Seite http://vidsbee.com/ColorPick/Privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "A program that will serially display selected text word by word.",
    "name": "Serial Speed Reader",
    "browser_action": {
        "default_icon": "icon19.png",
        "default_title": "Speed Reader",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "read.user.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        ""
    ],
    "version": "0.0.1.5"
}