101weiqiLocalizer

Localize 101weiqi.com pages to English

Co je 101weiqiLocalizer?

101weiqiLocalizer je rozšíření Chrome vyvinuté Marcel Grünauer, a jeho hlavní funkcí je „Localize 101weiqi.com pages to English“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření 101weiqiLocalizer

Stáhněte si soubory rozšíření 101weiqiLocalizer 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í

                        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.                    

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

Název 101weiqiLocalizer 101weiqiLocalizer
ID emhhlhigmokehndjjmgnailciakdmoba
Oficiální URL https://chromewebstore.google.com/detail/101weiqilocalizer/emhhlhigmokehndjjmgnailciakdmoba
Popis Localize 101weiqi.com pages to English
Velikost souboru 48.75 KB
Počet instalací 784
Aktuální Verze 0.1.5
Poslední Aktualizace 2024-02-09
Datum Vydání 2021-08-23
Hodnocení 4.67/5 Celkem 3 Hodnocení
Vývojář Marcel Grünauer
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://gogamespace.com/
URL Stránky Zásad Ochrany Soukromí http://gogamespace.com/privacy-policy
Podporované Jazyky 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
}