Pokemon Type Weakness & Strength Finder

Pokemon Type Weakness & Strength Finder

Enter a Pokemon name to find out what type(s) it is weak and strong against!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pokemon Type Weakness & Strength Finder",
  "version": "1.0",
  "description": "Enter a Pokemon name to find out what type(s) it is weak and strong against!",
  "permissions": [],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ]
    }
  ]
}