Text Speed-reading Extension

A Chrome extension that bolds parts of words to increase your reading speed

Was ist Text Speed-reading Extension?

Text Speed-reading Extension ist eine Chrome-Erweiterung, die von joe44850 entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension that bolds parts of words to increase your reading speed".

Erweiterungsscreenshots

screenshot

Text Speed-reading Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Text Speed-reading Extension-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

                        Introducing the new chrome extension that can boost your reading speed! Our extension bolds the first few letters of every word on a webpage within text paragraphs, making it easier for you to scan through the text and identify the most important words. Studies have shown that this technique can significantly increase your reading speed, making it perfect for students, professionals, and anyone who wants to read faster and more efficiently. Try it out today and experience the benefits of this simple yet powerful tool!                    

Grundlegende Informationen zur Erweiterung

Name Text Speed-reading Extension Text Speed-reading Extension
ID omdficelahogdlielanbfdcefpckabai
Offizielle URL https://chromewebstore.google.com/detail/text-speed-reading-extens/omdficelahogdlielanbfdcefpckabai
Beschreibung A Chrome extension that bolds parts of words to increase your reading speed
Dateigröße 33.97 KB
Installationsanzahl 55
Aktuelle Version 1.1
Letztes Update 2023-05-17
Veröffentlichungsdatum 2023-04-19
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler joe44850
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://joelinstrum.com
URL der Datenschutzrichtlinien-Seite https://docs.google.com/document/d/e/2PACX-1vTpl8SFxETn9eMTG0ROqfHsDfx48wbYjggVleV3On9em4lYHnCn06-NmtFIM3MEskYBmywfjVyZheFO/pub
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Text Speed-reading Extension",
    "version": "1.1",
    "description": "A Chrome extension that bolds parts of words to increase your reading speed",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js",
                "addSpeedRead.js",
                "removeSpeedRead.js"
            ]
        }
    ]
}