Vocab Swap

Learn a language while browsing the internet

Vocab Swap là gì?

Vocab Swap là một tiện ích mở rộng Chrome được phát triển bởi http://vocabswap.com, và tính năng chính của nó là "Learn a language while browsing the internet".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Vocab Swap

Tải xuống các tệp mở rộng Vocab Swap dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Vocab Swap Vocab Swap
ID aohlhfpmngfjpjfficefmhcpabejdkio
URL Chính Thức https://chrome.google.com/webstore/detail/vocab-swap/aohlhfpmngfjpjfficefmhcpabejdkio
Mô tả Learn a language while browsing the internet
Kích Thước Tệp 480 KB
Số Lần Cài Đặt 70
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 4.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển http://vocabswap.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://vocabswap.com
URL Trang Trợ Giúp https://vocabswap.com
URL Trang Chính Sách Bảo Mật https://vocabswap.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}