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.”。
擴展截圖
下載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 |
ID | lneofkmibckbjnmnphcfmddhoblknbii |
官方網址 | 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 } |