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

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

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

简体繁体拼音广东话转换 Simplified/Traditional Chinese is een Chrome-extensie ontwikkeld door https://helloacm.com, en de belangrijkste functie is "Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie 简体繁体拼音广东话转换 Simplified/Traditional Chinese

Download 简体繁体拼音广东话转换 Simplified/Traditional Chinese-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        # 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/                    

Basisinformatie over de Extensie

Naam 简体繁体拼音广东话转换 Simplified/Traditional Chinese 简体繁体拼音广东话转换 Simplified/Traditional Chinese
ID olpihmabpjpllgmahlgiakkgaccigpfo
Officiële 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
Beschrijving Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)
Bestandsgrootte 1.16 MB
Aantal Installaties 5,368
Huidige Versie 0.18
Laatst Bijgewerkt 2020-01-27
Publicatiedatum 2020-01-21
Beoordeling 3.97/5 Totaal 34 Beoordelingen
Ontwikkelaar https://helloacm.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://justyy.com/tools/chinese-converter/
Help Pagina-URL https://justyy.com/tools/chinese-converter/
URL van de Privacybeleid Pagina https://helloacm.com/disclaimer
Ondersteunde Talen 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
        }
    ]
}