101weiqiLocalizer

Localize 101weiqi.com pages to English

Wat is 101weiqiLocalizer?

101weiqiLocalizer is een Chrome-extensie ontwikkeld door Marcel Grünauer, en de belangrijkste functie is "Localize 101weiqi.com pages to English".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie 101weiqiLocalizer

Download 101weiqiLocalizer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam 101weiqiLocalizer 101weiqiLocalizer
ID emhhlhigmokehndjjmgnailciakdmoba
Officiële URL https://chromewebstore.google.com/detail/101weiqilocalizer/emhhlhigmokehndjjmgnailciakdmoba
Beschrijving Localize 101weiqi.com pages to English
Bestandsgrootte 48.75 KB
Aantal Installaties 784
Huidige Versie 0.1.5
Laatst Bijgewerkt 2024-02-09
Publicatiedatum 2021-08-23
Beoordeling 4.67/5 Totaal 3 Beoordelingen
Ontwikkelaar Marcel Grünauer
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://gogamespace.com/
URL van de Privacybeleid Pagina http://gogamespace.com/privacy-policy
Ondersteunde Talen 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
}