101weiqiLocalizer
Localize 101weiqi.com pages to English
什么是101weiqiLocalizer?
101weiqiLocalizer是由Marcel Grünauer开发的Chrome扩展程序,该扩展的主要功能是“Localize 101weiqi.com pages to English”。
扩展截图
下载101weiqiLocalizer扩展crx文件
下载101weiqiLocalizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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.                     扩展基本信息
| 名称 |   |  
| 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
}  |  |