101weiqiLocalizer

Localize 101weiqi.com pages to English

Vad är 101weiqiLocalizer?

101weiqiLocalizer är en Chrome-tillägg utvecklad av Marcel Grünauer, och dess huvudfunktion är "Localize 101weiqi.com pages to English".

Tilläggsskärmbilder

screenshot

Ladda ner 101weiqiLocalizer-förlängningens CRX-fil

Ladda ner 101weiqiLocalizer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn 101weiqiLocalizer 101weiqiLocalizer
ID emhhlhigmokehndjjmgnailciakdmoba
Officiell webbadress https://chromewebstore.google.com/detail/101weiqilocalizer/emhhlhigmokehndjjmgnailciakdmoba
Beskrivning Localize 101weiqi.com pages to English
Filstorlek 48.75 KB
Antal Installationer 784
Aktuell Version 0.1.5
Senast Uppdaterad 2024-02-09
Publiceringsdatum 2021-08-23
Betyg 4.67/5 Totalt 3 Betyg
Utvecklare Marcel Grünauer
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://gogamespace.com/
URL till Sekretesspolicy Sidan http://gogamespace.com/privacy-policy
Stödda Språk 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
}