DuelingBook Translator

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

O que é DuelingBook Translator?

DuelingBook Translator é uma extensão do Chrome desenvolvida por saggiclowndev, e sua principal característica é "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão DuelingBook Translator

Baixe arquivos de extensão DuelingBook Translator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome DuelingBook Translator DuelingBook Translator
ID lneofkmibckbjnmnphcfmddhoblknbii
URL Oficial https://chromewebstore.google.com/detail/duelingbook-translator/lneofkmibckbjnmnphcfmddhoblknbii
Descrição Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.
Tamanho do Arquivo 9.6 MB
Contagem de Instalações 29
Versão Atual 1.1.2
Última Atualização 2023-06-06
Data de Publicação 2022-12-28
Classificação 3.00/5 Total de 1 Avaliações
Desenvolvedor saggiclowndev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}