Text Speed-reading Extension

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

O que é Text Speed-reading Extension?

Text Speed-reading Extension é uma extensão do Chrome desenvolvida por joe44850, e sua principal característica é "A Chrome extension that bolds parts of words to increase your reading speed".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Text Speed-reading Extension

Baixe arquivos de extensão Text Speed-reading Extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Text Speed-reading Extension Text Speed-reading Extension
ID omdficelahogdlielanbfdcefpckabai
URL Oficial https://chromewebstore.google.com/detail/text-speed-reading-extens/omdficelahogdlielanbfdcefpckabai
Descrição A Chrome extension that bolds parts of words to increase your reading speed
Tamanho do Arquivo 33.97 KB
Contagem de Instalações 55
Versão Atual 1.1
Última Atualização 2023-05-17
Data de Publicação 2023-04-19
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor joe44850
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://joelinstrum.com
URL da Página de Política de Privacidade https://docs.google.com/document/d/e/2PACX-1vTpl8SFxETn9eMTG0ROqfHsDfx48wbYjggVleV3On9em4lYHnCn06-NmtFIM3MEskYBmywfjVyZheFO/pub
Idiomas Suportados 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"
            ]
        }
    ]
}