101weiqiLocalizer

Localize 101weiqi.com pages to English

Apa itu 101weiqiLocalizer?

101weiqiLocalizer adalah ekstensi Chrome yang dikembangkan oleh Marcel Grünauer, dan fitur utamanya adalah "Localize 101weiqi.com pages to English".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi 101weiqiLocalizer

Unduh file ekstensi 101weiqiLocalizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama 101weiqiLocalizer 101weiqiLocalizer
ID emhhlhigmokehndjjmgnailciakdmoba
URL Resmi https://chromewebstore.google.com/detail/101weiqilocalizer/emhhlhigmokehndjjmgnailciakdmoba
Deskripsi Localize 101weiqi.com pages to English
Ukuran File 48.75 KB
Jumlah Instalasi 784
Versi Saat Ini 0.1.5
Terakhir Diperbarui 2024-02-09
Tanggal Publikasi 2021-08-23
Penilaian 4.67/5 Total 3 Penilaian
Pengembang Marcel Grünauer
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://gogamespace.com/
URL Halaman Kebijakan Privasi http://gogamespace.com/privacy-policy
Bahasa yang Didukung 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
}