PS! Chrome Sync

PS! Chrome Sync

Chrome sync compatibility for Pokemon Showdown teams

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PS! Chrome Sync",
  "description": "Chrome sync compatibility for Pokemon Showdown teams",
  "version": "0.0.1",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "icons": {
    "32": "icons/icon32.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://play.pokemonshowdown.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "sync-storage.js"
      ]
    }
  ]
}