GBF-Kor-Trans

Simple Chrome Extension for translating GBF page to Korean

GBF-Kor-Trans란 무엇입니까?

GBF-Kor-Trans은(는) sidewinderkr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple Chrome Extension for translating GBF page to Korean"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GBF-Kor-Trans 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        그랑블루 판타지 한국어 번역을 위한 크롬 확장툴입니다.
크롬 웹 스토어 검토를 받아야하기 때문에 패키지 버전에 비해 업데이트가 느립니다.                    

확장 프로그램 기본 정보

이름 GBF-Kor-Trans GBF-Kor-Trans
ID lcadlhedpdcgnkmoaoipbmhdeacciipk
공식 URL https://chromewebstore.google.com/detail/gbf-kor-trans/lcadlhedpdcgnkmoaoipbmhdeacciipk
설명 Simple Chrome Extension for translating GBF page to Korean
파일 크기 95.53 KB
설치 횟수 221
현재 버전 0.9.24
최근 업데이트 2023-08-12
출시 날짜 2020-06-07
개발자 sidewinderkr
이메일 [email protected]
결제 유형 free
지원되는 언어 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GBF-Kor-Trans",
    "description": "Simple Chrome Extension for translating GBF page to Korean",
    "version": "0.9.24",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "clipboardWrite"
    ],
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/game.granbluefantasy.jp\/*",
                "http:\/\/gbf.game.mbga.jp\/*",
                "https:\/\/game.granbluefantasy.jp\/*",
                "https:\/\/gbf.game.mbga.jp\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "data\/*.csv",
        "images\/*.png",
        "images\/*.jpg",
        "data\/*.json"
    ]
}