Simplified Traditional Chinese Converter

Convert between simplified and traditional Chinese characters

Simplified Traditional Chinese Converterคืออะไร?

Simplified Traditional Chinese Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shang Liang และคุณลักษณะหลักของมันคือ "Convert between simplified and traditional Chinese characters"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Simplified Traditional Chinese Converter

ดาวน์โหลดไฟล์ส่วนขยาย Simplified Traditional Chinese Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Visit a page with Chinese characters e.g https://3w.huanqiu.com/a/24d596/3yhkrDv25pJ. Right click at the text and choose the option "简↔繁".                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Simplified Traditional Chinese Converter Simplified Traditional Chinese Converter
ID imnghkiliggemhkejgppikbgocegpjec
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simplified-traditional-ch/imnghkiliggemhkejgppikbgocegpjec
คำอธิบาย Convert between simplified and traditional Chinese characters
ขนาดไฟล์ 492 KB
จำนวนการติดตั้ง 1,530
เวอร์ชันปัจจุบัน 0.0.2
อัปเดตครั้งล่าสุด 2023-03-21
วันที่เผยแพร่ 2020-06-22
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Shang Liang
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en_US",
    "version": "0.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ],
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "opencc.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "STCharacters.txt",
                "STPhrases.txt",
                "TSCharacters.txt",
                "TSPhrases.txt"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}