Vocab Swap

Learn a language while browsing the internet

什么是Vocab Swap?

Vocab Swap是由http://vocabswap.com开发的Chrome扩展程序,该扩展的主要功能是“Learn a language while browsing the internet”。

扩展截图

screenshot
screenshot

下载Vocab Swap扩展crx文件

下载Vocab Swap扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Vocab Swap helps you effortlessly learn a new language while you surf the web.

Add words that you're learning, and Vocab Swap will automatically replace those words on web pages that you visit.                    

扩展基本信息

名称 Vocab Swap Vocab Swap
ID aohlhfpmngfjpjfficefmhcpabejdkio
官方URL https://chrome.google.com/webstore/detail/vocab-swap/aohlhfpmngfjpjfficefmhcpabejdkio
简介 Learn a language while browsing the internet
文件大小 480 KB
安装次数 70
当前版本 1.1
更新时间 2019-03-08
上架时间 2019-03-08
评分 4.25/5 共4次评分
开发者 http://vocabswap.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://vocabswap.com
帮助页面URL https://vocabswap.com
隐私政策页面URL https://vocabswap.com
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Vocab Swap",
    "version": "1.1",
    "description": "Learn a language while browsing the internet",
    "manifest_version": 2,
    "permissions": [
        "declarativeContent",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content-scripts\/libs\/findAndReplaceDOMText.js",
                "content-scripts\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "dist\/background.bundle.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup\/popup.html"
    }
}