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

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

Qu'est-ce que 简体繁体拼音广东话转换 Simplified/Traditional Chinese ?

简体繁体拼音广东话转换 Simplified/Traditional Chinese est une extension Chrome développée par https://helloacm.com, et sa fonction principale est "Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension 简体繁体拼音广东话转换 Simplified/Traditional Chinese

Téléchargez les fichiers d'extension 简体繁体拼音广东话转换 Simplified/Traditional Chinese au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom 简体繁体拼音广东话转换 Simplified/Traditional Chinese 简体繁体拼音广东话转换 Simplified/Traditional Chinese
ID olpihmabpjpllgmahlgiakkgaccigpfo
URL Officiel 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
Description Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)
Taille du Fichier 1.16 MB
Nombre d'Installations 5,368
Version Actuelle 0.18
Dernière Mise à Jour 2020-01-27
Date de Publication 2020-01-21
Évaluation 3.97/5 Total 34 Évaluations
Développeur https://helloacm.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://justyy.com/tools/chinese-converter/
URL de la Page d'Aide https://justyy.com/tools/chinese-converter/
URL de la Page de Politique de Confidentialité https://helloacm.com/disclaimer
Langues Prises en Charge 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
        }
    ]
}