101weiqiLocalizer

Localize 101weiqi.com pages to English

O que é 101weiqiLocalizer?

101weiqiLocalizer é uma extensão do Chrome desenvolvida por Marcel Grünauer, e sua principal característica é "Localize 101weiqi.com pages to English".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão 101weiqiLocalizer

Baixe arquivos de extensão 101weiqiLocalizer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        101weiqi.com is a Chinese-language web site where you can solve problems for the Go board game. Unfortunately there is no English-language localization of that website. This extension aims to make it easier for those of us who don't read Chinese to use that site. The extension adds a script to 101weiqi.com's web pages which translates strings to English. It does not alter the functionality of 101weiqi.com in any way.                    

Informações Básicas da Extensão

Nome 101weiqiLocalizer 101weiqiLocalizer
ID emhhlhigmokehndjjmgnailciakdmoba
URL Oficial https://chromewebstore.google.com/detail/101weiqilocalizer/emhhlhigmokehndjjmgnailciakdmoba
Descrição Localize 101weiqi.com pages to English
Tamanho do Arquivo 48.75 KB
Contagem de Instalações 784
Versão Atual 0.1.5
Última Atualização 2024-02-09
Data de Publicação 2021-08-23
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor Marcel Grünauer
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://gogamespace.com/
URL da Página de Política de Privacidade http://gogamespace.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "101weiqiLocalizer",
    "description": "Localize 101weiqi.com pages to English",
    "version": "0.1.5",
    "author": "Marcel Gruenauer",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.101weiqi.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "start.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.js"
            ],
            "matches": [
                "*:\/\/*.101weiqi.com\/*"
            ]
        }
    ],
    "icons": {
        "128": "icon-stone-128.png"
    },
    "manifest_version": 3
}