DuelingBook Translator
Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.
DuelingBook Translator là gì?
DuelingBook Translator là một tiện ích mở rộng Chrome được phát triển bởi saggiclowndev, và tính năng chính của nó là "Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DuelingBook Translator
Tải xuống các tệp mở rộng DuelingBook Translator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DuelingBook Translator |
ID | lneofkmibckbjnmnphcfmddhoblknbii |
URL Chính Thức | https://chromewebstore.google.com/detail/duelingbook-translator/lneofkmibckbjnmnphcfmddhoblknbii |
Mô tả | Allows to translate some cards on the site: 'duelingbook.com' in 4 different languages. |
Kích Thước Tệp | 9.6 MB |
Số Lần Cài Đặt | 29 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2023-06-06 |
Ngày Phát Hành | 2022-12-28 |
Đánh Giá | 3.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | saggiclowndev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |