Pokedex

Pokedex

Turn's facebook into a Pokedex.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pokedex",
  "version": "0.0.63",
  "manifest_version": 2,
  "description": "Turn's facebook into a Pokedex.",
  "icons": {
    "64": "images/facebook-like-button.png"
  },
  "web_accessible_resources": [
    "images/*.png",
    "styles/fonts/*.*"
  ],
  "permissions": [
    "https://*.facebook.com/"
  ],
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*.facebook.com/*",
        "https://*.facebook.com/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}