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

下载Codex | Click to translate any Spanish word扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}