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

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

Cos'è 简体繁体拼音广东话转换 Simplified/Traditional Chinese?

简体繁体拼音广东话转换 Simplified/Traditional Chinese è un'estensione di Chrome sviluppata da https://helloacm.com, e la sua funzione principale è "Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione 简体繁体拼音广东话转换 Simplified/Traditional Chinese

Scarica i file di estensione 简体繁体拼音广东话转换 Simplified/Traditional Chinese in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome 简体繁体拼音广东话转换 Simplified/Traditional Chinese 简体繁体拼音广东话转换 Simplified/Traditional Chinese
ID olpihmabpjpllgmahlgiakkgaccigpfo
URL Ufficiale 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
Descrizione Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)
Dimensione del File 1.16 MB
Conteggio Installazioni 5,368
Versione Corrente 0.18
Ultimo Aggiornamento 2020-01-27
Data di Pubblicazione 2020-01-21
Valutazione 3.97/5 Totale 34 Valutazioni
Sviluppatore https://helloacm.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://justyy.com/tools/chinese-converter/
URL della Pagina di Aiuto https://justyy.com/tools/chinese-converter/
URL della Pagina della Politica sulla Privacy https://helloacm.com/disclaimer
Lingue Supportate 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
        }
    ]
}