简体繁体拼音广东话转换 Simplified/Traditional Chinese

Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)

简体繁体拼音广东话转换 Simplified/Traditional Chinese क्या है?

简体繁体拼音广东话转换 Simplified/Traditional Chinese https://helloacm.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में 简体繁体拼音广东话转换 Simplified/Traditional Chinese एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        # A Chinese Tool
This extension converts Chinese characters in the current tab to 
  1. Simplified Chinese (ZH-CN or GB2312)
  2. Traditional Chinese (ZH-TW or BIG5) 
  3. Pinyin
  4. Madarian
  5. Cantonese
Refresh the page if you do not see changes.
Bugs reported to:  [email protected]

You can also convert between Pinyin, Simplified Chinese, Traditional Chinese, Mandarin and Cantonese using the following online tool:
https://justyy.com/tools/chinese-converter/

Support the development of this plugin:
  https://justyy.com/out/buymecoffee
  bitcoin:1J88t5UAgKBHhMgzkyH9bpY5mPdCYAe5XQ

# Source Code
  https://github.com/DoctorLai/Simplified-and-Traditional-Chinese

# Other Online Tools
  https://helloacm.com/tools/                    

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

नाम 简体繁体拼音广东话转换 Simplified/Traditional Chinese 简体繁体拼音广东话转换 Simplified/Traditional Chinese
ID olpihmabpjpllgmahlgiakkgaccigpfo
आधिकारिक URL https://chromewebstore.google.com/detail/%E7%AE%80%E4%BD%93%E7%B9%81%E4%BD%93%E6%8B%BC%E9%9F%B3%E5%B9%BF%E4%B8%9C%E8%AF%9D%E8%BD%AC%E6%8D%A2-simplifiedtra/olpihmabpjpllgmahlgiakkgaccigpfo
विवरण Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)
फ़ाइल का आकार 1.16 MB
स्थापना संख्या 5,368
वर्तमान संस्करण 0.18
अंतिम अपडेट 2020-01-27
प्रकाशन तिथि 2020-01-21
रेटिंग 3.97/5 कुल 34 रेटिंग्स
डेवलपर https://helloacm.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://justyy.com/tools/chinese-converter/
सहायता पृष्ठ URL https://justyy.com/tools/chinese-converter/
गोपनीयता नीति पृष्ठ URL https://helloacm.com/disclaimer
समर्थित भाषाएँ en,en-GB,en-US,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "\u7b80\u4f53\u7e41\u4f53\u62fc\u97f3\u5e7f\u4e1c\u8bdd\u8f6c\u6362 Simplified\/Traditional Chinese",
    "default_locale": "en",
    "short_name": "ConvertToChinese",
    "version": "0.18",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "\u7b80\u4f53\u7e41\u4f53\u62fc\u97f3\u5e7f\u4e1c\u8bdd\u8f6c\u6362 Simplified\/Traditional Chinese",
        "default_popup": "main.html"
    },
    "offline_enabled": true,
    "author": "justyy",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "description": "Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)",
    "web_accessible_resources": [
        "js\/*",
        "images\/*",
        "bs\/*"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/pinyin.js",
                "js\/dialect.js",
                "js\/convert.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}