DuelingBook Translator
Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.
Что такое DuelingBook Translator?
DuelingBook Translator - это расширение Chrome, разработанное saggiclowndev, и его основная функция - "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.".
Снимки экрана расширения
Скачать файл CRX расширения DuelingBook Translator
Скачайте файлы расширений 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 |
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 } |