New TongWenTang

Convert characters between Chinese Simplified and Chinese Traditional

Was ist New TongWenTang?

New TongWenTang ist eine Chrome-Erweiterung, die von tongwentang entwickelt wurde, und ihr Hauptmerkmal ist "Convert characters between Chinese Simplified and Chinese Traditional".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

New TongWenTang-Erweiterungs-CRX-Datei herunterladen

Laden Sie New TongWenTang-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name New TongWenTang New TongWenTang
ID ldmgbgaoglmaiblpnphffibpbfchjaeg
Offizielle URL https://chromewebstore.google.com/detail/new-tongwentang/ldmgbgaoglmaiblpnphffibpbfchjaeg
Beschreibung Convert characters between Chinese Simplified and Chinese Traditional
Dateigröße 255 KB
Installationsanzahl 86,992
Aktuelle Version 2.2.0
Letztes Update 2022-11-12
Veröffentlichungsdatum 2018-04-05
Bewertung 4.44/5 Insgesamt 561 Bewertungen
Entwickler tongwentang
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tongwentang/tongwentang-extension
Hilfeseite URL https://github.com/tongwentang/tongwentang-extension/issues
Unterstützte Sprachen 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"
            }
        }
    }
}