101weiqiLocalizer

Localize 101weiqi.com pages to English

Qu'est-ce que 101weiqiLocalizer ?

101weiqiLocalizer est une extension Chrome développée par Marcel Grünauer, et sa fonction principale est "Localize 101weiqi.com pages to English".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension 101weiqiLocalizer

Téléchargez les fichiers d'extension 101weiqiLocalizer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom 101weiqiLocalizer 101weiqiLocalizer
ID emhhlhigmokehndjjmgnailciakdmoba
URL Officiel https://chromewebstore.google.com/detail/101weiqilocalizer/emhhlhigmokehndjjmgnailciakdmoba
Description Localize 101weiqi.com pages to English
Taille du Fichier 48.75 KB
Nombre d'Installations 784
Version Actuelle 0.1.5
Dernière Mise à Jour 2024-02-09
Date de Publication 2021-08-23
Évaluation 4.67/5 Total 3 Évaluations
Développeur Marcel Grünauer
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://gogamespace.com/
URL de la Page de Politique de Confidentialité http://gogamespace.com/privacy-policy
Langues Prises en Charge 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
}