Text Speed-reading Extension

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

Vad är Text Speed-reading Extension?

Text Speed-reading Extension är en Chrome-tillägg utvecklad av joe44850, och dess huvudfunktion är "A Chrome extension that bolds parts of words to increase your reading speed".

Tilläggsskärmbilder

screenshot

Ladda ner Text Speed-reading Extension-förlängningens CRX-fil

Ladda ner Text Speed-reading Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Text Speed-reading Extension Text Speed-reading Extension
ID omdficelahogdlielanbfdcefpckabai
Officiell webbadress https://chromewebstore.google.com/detail/text-speed-reading-extens/omdficelahogdlielanbfdcefpckabai
Beskrivning A Chrome extension that bolds parts of words to increase your reading speed
Filstorlek 33.97 KB
Antal Installationer 55
Aktuell Version 1.1
Senast Uppdaterad 2023-05-17
Publiceringsdatum 2023-04-19
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare joe44850
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://joelinstrum.com
URL till Sekretesspolicy Sidan https://docs.google.com/document/d/e/2PACX-1vTpl8SFxETn9eMTG0ROqfHsDfx48wbYjggVleV3On9em4lYHnCn06-NmtFIM3MEskYBmywfjVyZheFO/pub
Stödda Språk 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"
            ]
        }
    ]
}