PokeFinder

PokeFinder

Wonder what this Pokemon is? We got you.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "PokeFinder",
  "description": "Wonder what this Pokemon is? We got you.",
  "version": "1",
  "author": "Mike Cruz",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Find Pokemon!"
  },
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    "images/*.png",
    "data/*.json"
  ],
  "icons": {
    "16": "images/icon-16x16.png",
    "32": "images/icon-32x32.png",
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  }
}