101weiqiLocalizer

Localize 101weiqi.com pages to English

101weiqiLocalizer란 무엇입니까?

101weiqiLocalizer은(는) Marcel Grünauer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Localize 101weiqi.com pages to English"입니다.

확장 프로그램 스크린샷

screenshot

101weiqiLocalizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 101weiqiLocalizer 101weiqiLocalizer
ID emhhlhigmokehndjjmgnailciakdmoba
공식 URL https://chromewebstore.google.com/detail/101weiqilocalizer/emhhlhigmokehndjjmgnailciakdmoba
설명 Localize 101weiqi.com pages to English
파일 크기 48.75 KB
설치 횟수 784
현재 버전 0.1.5
최근 업데이트 2024-02-09
출시 날짜 2021-08-23
평점 4.67/5 총 3 개의 평점
개발자 Marcel Grünauer
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://gogamespace.com/
개인정보 보호 정책 페이지 URL http://gogamespace.com/privacy-policy
지원되는 언어 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
}