Progressive Immersion

A browser extension that progressively immerses you in a language.

Progressive Immersion란 무엇입니까?

Progressive Immersion은(는) Aidan Welch에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A browser extension that progressively immerses you in a language."입니다.

확장 프로그램 스크린샷

screenshot

Progressive Immersion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Progressive Immersion Progressive Immersion
ID glhikloekamfeiakikebcndppkgldloj
공식 URL https://chromewebstore.google.com/detail/progressive-immersion/glhikloekamfeiakikebcndppkgldloj
설명 A browser extension that progressively immerses you in a language.
파일 크기 69.44 KB
설치 횟수 24
현재 버전 0.8.9
최근 업데이트 2024-01-05
출시 날짜 2023-06-10
평점 4.00/5 총 1 개의 평점
개발자 Aidan Welch
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AidanWelch/ProgressiveImmersion
도움말 페이지 URL https://github.com/AidanWelch/ProgressiveImmersion/issues
지원되는 언어 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
    }
}