Text Speed-reading Extension

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

Co je Text Speed-reading Extension?

Text Speed-reading Extension je rozšíření Chrome vyvinuté joe44850, a jeho hlavní funkcí je „A Chrome extension that bolds parts of words to increase your reading speed“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Text Speed-reading Extension

Stáhněte si soubory rozšíření Text Speed-reading Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Text Speed-reading Extension Text Speed-reading Extension
ID omdficelahogdlielanbfdcefpckabai
Oficiální URL https://chromewebstore.google.com/detail/text-speed-reading-extens/omdficelahogdlielanbfdcefpckabai
Popis A Chrome extension that bolds parts of words to increase your reading speed
Velikost souboru 33.97 KB
Počet instalací 55
Aktuální Verze 1.1
Poslední Aktualizace 2023-05-17
Datum Vydání 2023-04-19
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář joe44850
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://joelinstrum.com
URL Stránky Zásad Ochrany Soukromí https://docs.google.com/document/d/e/2PACX-1vTpl8SFxETn9eMTG0ROqfHsDfx48wbYjggVleV3On9em4lYHnCn06-NmtFIM3MEskYBmywfjVyZheFO/pub
Podporované Jazyky 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"
            ]
        }
    ]
}