Simplified Traditional Chinese Converter

Convert between simplified and traditional Chinese characters

Simplified Traditional Chinese Converter क्या है?

Simplified Traditional Chinese Converter Shang Liang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert between simplified and traditional Chinese characters"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simplified Traditional Chinese Converter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Simplified Traditional Chinese Converter Simplified Traditional Chinese Converter
ID imnghkiliggemhkejgppikbgocegpjec
आधिकारिक URL https://chromewebstore.google.com/detail/simplified-traditional-ch/imnghkiliggemhkejgppikbgocegpjec
विवरण Convert between simplified and traditional Chinese characters
फ़ाइल का आकार 492 KB
स्थापना संख्या 1,530
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2023-03-21
प्रकाशन तिथि 2020-06-22
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Shang Liang
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}