SetDeli

SetDeli

SetDeli creates a new dropdown menu on the import page of Pokemon Showdown's teambuilder which leverages the SetDeli API to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SetDeli",
  "version": "0.1.1",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://play.pokemonshowdown.com/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "inject.js"
  ],
  "icons": {
    "16": "pokeball128.jpeg",
    "48": "pokeball128.jpeg",
    "128": "pokeball128.jpeg"
  }
}