Simplified Traditional Chinese Converter

Convert between simplified and traditional Chinese characters

Simplified Traditional Chinese Converter là gì?

Simplified Traditional Chinese Converter là một tiện ích mở rộng Chrome được phát triển bởi Shang Liang, và tính năng chính của nó là "Convert between simplified and traditional Chinese characters".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simplified Traditional Chinese Converter

Tải xuống các tệp mở rộng Simplified Traditional Chinese Converter 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

                        Visit a page with Chinese characters e.g https://3w.huanqiu.com/a/24d596/3yhkrDv25pJ. Right click at the text and choose the option "简↔繁".                    

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

Tên Simplified Traditional Chinese Converter Simplified Traditional Chinese Converter
ID imnghkiliggemhkejgppikbgocegpjec
URL Chính Thức https://chromewebstore.google.com/detail/simplified-traditional-ch/imnghkiliggemhkejgppikbgocegpjec
Mô tả Convert between simplified and traditional Chinese characters
Kích Thước Tệp 492 KB
Số Lần Cài Đặt 1,530
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2023-03-21
Ngày Phát Hành 2020-06-22
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Shang Liang
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en_US",
    "version": "0.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ],
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "opencc.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "STCharacters.txt",
                "STPhrases.txt",
                "TSCharacters.txt",
                "TSPhrases.txt"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}