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

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

简体繁体拼音广东话转换 Simplified/Traditional Chinese là gì?

简体繁体拼音广东话转换 Simplified/Traditional Chinese là một tiện ích mở rộng Chrome được phát triển bởi https://helloacm.com, và tính năng chính của nó là "Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng 简体繁体拼音广东话转换 Simplified/Traditional Chinese

Tải xuống các tệp mở rộng 简体繁体拼音广东话转换 Simplified/Traditional Chinese dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên 简体繁体拼音广东话转换 Simplified/Traditional Chinese 简体繁体拼音广东话转换 Simplified/Traditional Chinese
ID olpihmabpjpllgmahlgiakkgaccigpfo
URL Chính Thức 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
Mô tả Convert Automatically to Chinese (Pinyin, Cantonese GB2312 and BIG5)
Kích Thước Tệp 1.16 MB
Số Lần Cài Đặt 5,368
Phiên Bản Hiện Tại 0.18
Cập Nhật Lần Cuối 2020-01-27
Ngày Phát Hành 2020-01-21
Đánh Giá 3.97/5 Tổng số 34 Đánh Giá
Nhà Phát Triển https://helloacm.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://justyy.com/tools/chinese-converter/
URL Trang Trợ Giúp https://justyy.com/tools/chinese-converter/
URL Trang Chính Sách Bảo Mật https://helloacm.com/disclaimer
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}