Simplified Traditional Chinese Converter

Convert between simplified and traditional Chinese characters

Co je Simplified Traditional Chinese Converter?

Simplified Traditional Chinese Converter je rozšíření Chrome vyvinuté Shang Liang, a jeho hlavní funkcí je „Convert between simplified and traditional Chinese characters“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Simplified Traditional Chinese Converter

Stáhněte si soubory rozšíření Simplified Traditional Chinese Converter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Simplified Traditional Chinese Converter Simplified Traditional Chinese Converter
ID imnghkiliggemhkejgppikbgocegpjec
Oficiální URL https://chromewebstore.google.com/detail/simplified-traditional-ch/imnghkiliggemhkejgppikbgocegpjec
Popis Convert between simplified and traditional Chinese characters
Velikost souboru 492 KB
Počet instalací 1,530
Aktuální Verze 0.0.2
Poslední Aktualizace 2023-03-21
Datum Vydání 2020-06-22
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Shang Liang
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}