Pokémon Showdown FR
Pokémon Showdown traduit intégralement en français !
什么是Pokémon Showdown FR?
Pokémon Showdown FR是由Sykless开发的Chrome扩展程序,该扩展的主要功能是“Pokémon Showdown traduit intégralement en français !”。
扩展截图
下载Pokémon Showdown FR扩展crx文件
下载Pokémon Showdown FR扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Envie de jouer sur Pokémon Showdown mais rebuté par l'interface entièrement en anglais ? Pas envie d'apprendre que Concombaffe se dit Pyukumuku ? J'ai la solution ! Cette extension traduit automatiquement toute l'interface de Pokémon Showdown en français, du menu aux noms des Pokémon. ★ MENU Tout ce qui est possible d'être traduit a été manuellement traduit, de manière à avoir une interface en français la plus fidèle possible ! ★ TEAMBUILDER Tous les noms des Pokémon, Capacités, Talents et Objets sont entièrement traduits, avec leur description ! La fonction de recherche permet également de rechercher des noms français ! Habitué des noms en anglais ? La recherche avec les noms anglais reste disponible ! ★ COMBAT Tout le combat est traduit en temps réel, et les traductions des effets des attaques sont directement reprises des jeux ! ★ REPLAY Profitez d'un replay de votre match entièrement traduit en français ! ★ DISCORD Pour toute information ou problème à reporter, rejoignez le Discord ! https://discord.gg/hRacUWR2wc ★ OPEN-SOURCE Pokémon Showdown FR est Open-Source ! https://github.com/Sykless/pokemon-showdown-fr ★ CONTACT Envie de contacter le développeur ? Voici les infos : - Twitter : @Sykless - Discord : Sykless#2124 - Twitch : @TristanPelleteuse
扩展基本信息
名称 | Pokémon Showdown FR |
ID | jfnmkihlclfepcjmfeobaijabammoegd |
官方URL | https://chromewebstore.google.com/detail/pok%C3%A9mon-showdown-fr/jfnmkihlclfepcjmfeobaijabammoegd |
简介 | Pokémon Showdown traduit intégralement en français ! |
文件大小 | 734 KB |
安装次数 | 14,128 |
当前版本 | 1.7 |
更新时间 | 2023-12-18 |
上架时间 | 2022-10-26 |
评分 | 5.00/5 共51次评分 |
开发者 | Sykless |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Sykless/pokemon-showdown-fr |
帮助页面URL | https://discord.gg/hRacUWR2wc |
隐私政策页面URL | https://github.com/Sykless/pokemon-showdown-fr/blob/master/Privacy%20Policies |
支持的语言 | fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pok\u00e9mon Showdown FR", "version": "1.7", "description": "Pok\u00e9mon Showdown traduit int\u00e9gralement en fran\u00e7ais !", "icons": { "128": "icon128.png" }, "content_scripts": [ { "js": [ "homeContentScript.js", "teambuilderContentScript.js", "battleContentScript.js" ], "run_at": "document_end", "matches": [ "*:\/\/*.pokemonshowdown.com\/*" ] } ], "web_accessible_resources": [ { "resources": [ "homeTranslate.js", "teambuilderTranslate.js", "battleTranslate.js", "sprites\/*" ], "matches": [ "*:\/\/*.pokemonshowdown.com\/*" ] } ], "manifest_version": 3 } |