Simplified Traditional Chinese Converter

Convert between simplified and traditional Chinese characters

What is Simplified Traditional Chinese Converter?

Simplified Traditional Chinese Converter is a Chrome extension developed by Shang Liang, and its main feature is "Convert between simplified and traditional Chinese characters".

Extension Screenshots

screenshot

Download Simplified Traditional Chinese Converter Extension CRX File

Download Simplified Traditional Chinese Converter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Simplified Traditional Chinese Converter Simplified Traditional Chinese Converter
ID imnghkiliggemhkejgppikbgocegpjec
Official URL https://chromewebstore.google.com/detail/simplified-traditional-ch/imnghkiliggemhkejgppikbgocegpjec
Description Convert between simplified and traditional Chinese characters
File Size 492 KB
Installation Count 1,530
Current Version 0.0.2
Last Updated 2023-03-21
Publish Date 2020-06-22
Rating 5.00/5 Total 3 Ratings
Developer Shang Liang
Email [email protected]
Payment Type free
Supported Languages 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}