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文件

下載Progressive Immersion擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
    }
}