Pokémon Showdown Traduction

Pokémon Showdown Traduction

Translate Pokémon Showdown in french

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pokémon Showdown Traduction",
  "version": "0.0.1",
  "description": "Translate Pokémon Showdown in french",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "homeContentScript.js",
        "teambuilderContentScript.js",
        "battleContentScript.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://play.pokemonshowdown.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "homeTranslate.js",
        "teambuilderTranslate.js",
        "battleTranslate.js",
        "sprites/*"
      ],
      "matches": [
        "https://play.pokemonshowdown.com/*"
      ]
    }
  ],
  "manifest_version": 3
}