Pokemon Japanese->English Translator
Modifying HTML to translate Japanese movesets to English
什么是Pokemon Japanese->English Translator?
Pokemon Japanese->English Translator是由kkoon开发的Chrome扩展程序,该扩展的主要功能是“Modifying HTML to translate Japanese movesets to English”。
扩展截图
下载Pokemon Japanese->English Translator扩展crx文件
下载Pokemon Japanese->English Translator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Chrome Extension to allow Japanese Pokemon articles (such as those from http://www.emolgame.jp/) to be translated to English. Extension converts Pokemon name, moveset, item, ability, and nature. Developed for https://vgcwithhats.com/ as part of a service to help English-speaking countries gain insight on the Japanese metagame. Currently working on adding support for Kanji.
扩展基本信息
名称 | Pokemon Japanese->English Translator |
ID | eoiflfnninooeknmhjmllkigadljkmic |
官方URL | https://chromewebstore.google.com/detail/pokemon-japanese-%3Eenglish/eoiflfnninooeknmhjmllkigadljkmic |
简介 | Modifying HTML to translate Japanese movesets to English |
文件大小 | 560 KB |
安装次数 | 85 |
当前版本 | 1.2 |
更新时间 | 2018-04-07 |
上架时间 | 2018-04-07 |
评分 | 5.00/5 共2次评分 |
开发者 | kkoon |
付费类型 | free |
扩展官网 | http://vgcwithhats.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pokemon Japanese->English Translator", "version": "1.2", "manifest_version": 2, "description": "Modifying HTML to translate Japanese movesets to English", "icons": { "16": "images\/logo16.png", "32": "images\/logo32.png", "38": "images\/logo38.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "browser_action": { "default_icon": { "16": "images\/logo16.png", "32": "images\/logo32.png", "38": "images\/logo38.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "replace.js" ], "run_at": "document_end" } ] } |