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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Pokemon Japanese->English Translator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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 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"
        }
    ]
}