New TongWenTang

Convert characters between Chinese Simplified and Chinese Traditional

New TongWenTang란 무엇입니까?

New TongWenTang은(는) tongwentang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convert characters between Chinese Simplified and Chinese Traditional"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

New TongWenTang 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        New Tong Wen Tang is a Browser Extension that provide functions for convert between Simplicity Chinese and Traditional Chinese.                    

확장 프로그램 기본 정보

이름 New TongWenTang New TongWenTang
ID ldmgbgaoglmaiblpnphffibpbfchjaeg
공식 URL https://chromewebstore.google.com/detail/new-tongwentang/ldmgbgaoglmaiblpnphffibpbfchjaeg
설명 Convert characters between Chinese Simplified and Chinese Traditional
파일 크기 255 KB
설치 횟수 86,992
현재 버전 2.2.0
최근 업데이트 2022-11-12
출시 날짜 2018-04-05
평점 4.44/5 총 561 개의 평점
개발자 tongwentang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tongwentang/tongwentang-extension
도움말 페이지 URL https://github.com/tongwentang/tongwentang-extension/issues
지원되는 언어 en,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_MSG_EXT_NAME__",
    "version": "2.2.0",
    "description": "__MSG_MSG_EXT_DESC__",
    "author": "t7yang",
    "homepage_url": "https:\/\/github.com\/tongwentang\/tongwentang-extension",
    "default_locale": "en",
    "icons": {
        "16": "icons\/tongwen-icon-16.png",
        "32": "icons\/tongwen-icon-32.png",
        "48": "icons\/tongwen-icon-48.png",
        "128": "icons\/tongwen-icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "downloads",
        "notifications",
        "storage",
        "unlimitedStorage"
    ],
    "optional_permissions": [
        "clipboardWrite",
        "clipboardRead"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/tongwen-icon-16.png",
            "32": "icons\/tongwen-icon-32.png",
            "48": "icons\/tongwen-icon-48.png",
            "128": "icons\/tongwen-icon-128.png"
        }
    },
    "options_ui": {
        "browser_style": true,
        "open_in_tab": true,
        "page": "options.html"
    },
    "commands": {
        "w_s2t": {
            "description": "__MSG_MSG_WEBPAGE_S2T__",
            "suggested_key": {
                "default": "Shift+Alt+C"
            }
        },
        "w_t2s": {
            "description": "__MSG_MSG_WEBPAGE_T2S__",
            "suggested_key": {
                "default": "Shift+Alt+V"
            }
        },
        "c_s2t": {
            "description": "__MSG_MSG_CONVERT_CLIPBOARD_S2T__",
            "suggested_key": {
                "default": "Shift+Alt+Z"
            }
        },
        "c_t2s": {
            "description": "__MSG_MSG_CONVERT_CLIPBOARD_T2S__",
            "suggested_key": {
                "default": "Shift+Alt+X"
            }
        }
    }
}