BetterMAL

BetterMAL

Let's make MAL a better site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BetterMAL",
  "version": "1.1.0",
  "description": "Let's make MAL a better site.",
  "icons": {
    "128": "./icons/icon_128.png"
  },
  "browser_action": {
    "default_icon": "./icons/icon.png"
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://myanimelist.net/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "tabs",
    "https://myanimelist.net/*",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}