Pokemon Hack

Pokemon Hack

Porygon-Z has hacked into your computer and uploaded random Pokemon! Funny prank for you and your friends!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pokemon Hack",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Porygon-Z has hacked into your computer and uploaded random Pokemon! Funny prank for you and your friends!",
  "icons": {
    "16": "icon1.png",
    "128": "icon2.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "web_accessible_resources": [
    "images/*",
    "/images/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}