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ファイルをダウンロード

DuelingBook Translator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
}