Word Sponge

Word Sponge helps you learn a new language by integrating that language into your daily life.

Word Sponge란 무엇입니까?

Word Sponge은(는) ryankopf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Word Sponge helps you learn a new language by integrating that language into your daily life."입니다.

확장 프로그램 스크린샷

screenshot

Word Sponge 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        The Word Sponge is a powerful and innovative Chrome extension that helps you naturally learn a new language as you browse the web. By seamlessly replacing words in your daily web browsing experience with their translations, you can progressively improve your language skills without disrupting your routine.

Automatically replace words in the webpages you visit with their translations in your target language, allowing you to learn through context and immersion. Click on translated words to toggle between the original and translated versions, so you can quickly recall the meaning and reinforce your learning.

For example, imagine you're learning Spanish. While reading an article about animals, you might come across the following sentence:

"The cat chased the dog through the park."

The Word Sponge would automatically replace some words with their Spanish translations:

"The gato chased the perro through the park."

As you continue browsing, you'll be exposed to more translated words, helping you learn Spanish vocabulary and grammar naturally and effortlessly.

Start your language learning journey today with The Word Sponge!                    

확장 프로그램 기본 정보

이름 Word Sponge Word Sponge
ID kiphhbngjiidccgcebflhlmmabighbem
공식 URL https://chromewebstore.google.com/detail/word-sponge/kiphhbngjiidccgcebflhlmmabighbem
설명 Word Sponge helps you learn a new language by integrating that language into your daily life.
파일 크기 22.62 KB
설치 횟수 154
현재 버전 1.2
최근 업데이트 2023-08-16
출시 날짜 2023-03-23
개발자 ryankopf
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://thewordsponge.com/
개인정보 보호 정책 페이지 URL https://thewordsponge.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Word Sponge",
    "version": "1.2",
    "description": "Word Sponge helps you learn a new language by integrating that language into your daily life.",
    "permissions": [
        "storage",
        "alarms",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/thewordsponge.com\/"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Word Sponge",
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}