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