101weiqiLocalizer
Localize 101weiqi.com pages to English
ما هو 101weiqiLocalizer؟
101weiqiLocalizer هو إضافة Chrome تم تطويرها بواسطة Marcel Grünauer، والميزة الرئيسية لها هي "Localize 101weiqi.com pages to English".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة 101weiqiLocalizer
قم بتنزيل ملفات الامتداد 101weiqiLocalizer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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/ |
عنوان صفحة سياسة الخصوصية | 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 } |