DuelingBook Translator

Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.

DuelingBook Translator란 무엇입니까?

DuelingBook Translator은(는) saggiclowndev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

DuelingBook Translator 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to translate the different yu-gi-oh cards on the duelingbook.com site.

For the moment the application the extension manages 4 languages: French, Portuguese, Italian, German.

Later I will add more features such as better text organization and a new search bar to find a card in your own language.                    

확장 프로그램 기본 정보

이름 DuelingBook Translator DuelingBook Translator
ID lneofkmibckbjnmnphcfmddhoblknbii
공식 URL https://chromewebstore.google.com/detail/duelingbook-translator/lneofkmibckbjnmnphcfmddhoblknbii
설명 Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.
파일 크기 9.6 MB
설치 횟수 29
현재 버전 1.1.2
최근 업데이트 2023-06-06
출시 날짜 2022-12-28
평점 3.00/5 총 1 개의 평점
개발자 saggiclowndev
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DuelingBook Translator",
    "version": "1.1.2",
    "description": "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.",
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.duelingbook.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "https:\/\/www.duelingbook.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bdd\/db_de.json",
                "bdd\/db_en.json",
                "bdd\/db_fr.json",
                "bdd\/db_pt.json",
                "bdd\/db_it.json"
            ],
            "matches": [
                "https:\/\/www.duelingbook.com\/*"
            ]
        }
    ],
    "icons": {
        "16": ".\/icon\/icon16.png",
        "48": ".\/icon\/icon48.png",
        "128": ".\/icon\/icon128.png"
    },
    "manifest_version": 3
}