MALfo!

MALfo!

Get information from Reddit links to MyAnimeList without even visiting the site!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MALfo!",
  "description": "Get information from Reddit links to MyAnimeList without even visiting the site!",
  "version": "1.0",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "128": "icon128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "default_locale": "en",
  "permissions": [
    "http://www.myanimelist.net/*",
    "http://www.myanimelist.net/*"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "http://www.reddit.com/r/Animesuggest/*",
        "http://www.reddit.com/r/anime/*",
        "http://myanimelist.net/animelist/*"
      ],
      "css": [
        "malfo.css"
      ],
      "js": [
        "malfo.js"
      ]
    }
  ]
}