Myanimelist Redesign

Myanimelist Redesign

A redesigned user interface for Myanimelist with multiple themes and layout improvements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Myanimelist Redesign",
  "description": "A redesigned user interface for Myanimelist with multiple themes and layout improvements",
  "version": "1.7.5",
  "minimum_chrome_version": "88",
  "icons": {
    "128": "images/logo.png",
    "256": "images/logo_256.png",
    "512": "images/logo_512.png"
  },
  "action": {
    "default_icon": "images/logo.png",
    "default_popup": "menu/menu.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://myanimelist.net/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://myanimelist.net/*"
      ],
      "js": [
        "javascript/anime.min.js",
        "javascript/hammer.min.js",
        "javascript/functionX.js",
        "javascript/mal_redesigned.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "https://myanimelist.net/ownlist/*"
      ],
      "js": [
        "javascript/mal_redesigned_iframe.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}