Progressive Immersion

A browser extension that progressively immerses you in a language.

¿Qué es Progressive Immersion?

Progressive Immersion es una extensión de Chrome desarrollada por Aidan Welch, y su función principal es "A browser extension that progressively immerses you in a language.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Progressive Immersion

Descarga archivos de extensión Progressive Immersion en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        A browser extension that progressively immerses you in a language. Using Google Translate we translate frequent words in sites you read to a language you want to learn!  This will not teach you a language but instead hopefully expand your vocab.

This extension is open-source and we do not track your data. BUT, it does send words selected to be translated directly to Google Translate, which can be a privacy risk. You should add websites you want the extension not to analyze to the exclusion list, or turn the extension off before visiting them. Be warned though that the extension starts to analyze a page when it starts to load so you should turn it off or add a page to the exclusion list before loading it.

View the source code or contribute here: https://github.com/AidanWelch/ProgressiveImmersion

And, sponsor the project here: https://github.com/sponsors/AidanWelch                    

Información Básica de la Extensión

Nombre Progressive Immersion Progressive Immersion
ID glhikloekamfeiakikebcndppkgldloj
URL Oficial https://chromewebstore.google.com/detail/progressive-immersion/glhikloekamfeiakikebcndppkgldloj
Descripción A browser extension that progressively immerses you in a language.
Tamaño del Archivo 69.44 KB
Cantidad de Instalaciones 24
Versión Actual 0.8.9
Última Actualización 2024-01-05
Fecha de Publicación 2023-06-10
Calificación 4.00/5 Total de 1 Calificaciones
Desarrollador Aidan Welch
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/AidanWelch/ProgressiveImmersion
URL de la Página de Ayuda https://github.com/AidanWelch/ProgressiveImmersion/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Progressive Immersion",
    "description": "A browser extension that progressively immerses you in a language.",
    "icons": {
        "48": "images\/logo-48.png",
        "96": "images\/logo-96.png"
    },
    "version": "0.8.9",
    "permissions": [
        "webRequest",
        "alarms",
        "storage",
        "unlimitedStorage",
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/translate.google.com\/*"
    ],
    "action": {
        "default_icon": "images\/logo-32.png",
        "default_title": "Progressive Immersion",
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_scripts\/main.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background_scripts\/main.js",
        "mode": "module"
    },
    "options_ui": {
        "page": "options\/index.html",
        "browser_style": true
    }
}