Codex | Click to translate any Spanish word

Learn Spanish by reading song lyrics, news articles, and more!

Codex | Click to translate any Spanish word란 무엇입니까?

Codex | Click to translate any Spanish word은(는) James Dorfman에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Learn Spanish by reading song lyrics, news articles, and more!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Codex | Click to translate any Spanish word 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Double click on any Spanish word, and a tooltip will appear with its English translation. Check out the screenshots, it’s pretty self explanatory!

This extension will not translate entire webpages to English. Google Chrome already has a built-in feature for that. Instead, this extension makes it easy to translate individual words that you don't understand. This can help you read fully Spanish content online and improve your vocabulary.

I built this extension out of frustration. I'm currently learning Spanish and was spending so much time switching between my current tab and Google Translate. This took a lot of effort, and made Spanish reading an unpleasant chore. 

Now you can read song lyrics, stay up-to-date on Latin American news, and finally understand those slang-filled Spanish YouTube comments that seem to appear on every single video...

I want to make this extension as useful as possible. If you have any new feature requests / improvements, or if something is not working for you, please reach out.

You can do so by clicking on the extension's icon in your browser toolbar, and then following the instructions over there.                    

확장 프로그램 기본 정보

이름 Codex | Click to translate any Spanish word Codex | Click to translate any Spanish word
ID mapkibljnihfhlklefhkipogljphjohg
공식 URL https://chromewebstore.google.com/detail/codex-click-to-translate/mapkibljnihfhlklefhkipogljphjohg
설명 Learn Spanish by reading song lyrics, news articles, and more!
파일 크기 147 KB
설치 횟수 154
현재 버전 0.2
최근 업데이트 2021-05-13
출시 날짜 2021-01-21
평점 5.00/5 총 2 개의 평점
개발자 James Dorfman
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://docs.google.com/document/d/1gxY8bNUf8uCIK-uwr-dmsxYbJgTufAK5-sXLGKDqv7c/edit?usp=sharing
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codex | Click to translate any Spanish word",
    "description": "Learn Spanish by reading song lyrics, news articles, and more!",
    "version": "0.2",
    "browser_action": {
        "default_popup": "html\/index.html",
        "default_icon": "res\/icon128.png"
    },
    "icons": {
        "16": "res\/icon16.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/onload.js"
            ],
            "css": [
                "css\/inject.css"
            ]
        }
    ],
    "manifest_version": 2
}