Comfortable MyAnimeList: A Better Dark Mode!

Comfortable MyAnimeList: A Better Dark Mode!

Enable a more comfortable dark mode on Myanimelist.net, by Shishio-kun@Myanimelist. Made to be simple and lightweight. Install and done.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Comfortable MyAnimeList Dark Mode",
  "description": "Enable dark mode on Myanimelist.net, by Shishio-kun.",
  "version": "19",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "108.0"
    }
  },
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://myanimelist.net/*",
        "https://mxj.myanimelist.net/*"
      ],
      "exclude_matches": [
        "https://myanimelist.net/animelist/*",
        "https://myanimelist.net/mangalist/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "darkmodefirefox.css"
      ],
      "js": [
        "textbox.js"
      ]
    },
    {
      "matches": [
        "https://myanimelist.net/",
        "https://myanimelist.net/anime/season"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "css": [
        "darkfrontfirefox.css"
      ],
      "js": [
        "textbox.js"
      ]
    },
    {
      "matches": [
        "https://fal.myanimelist.net/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "css": [
        "darkfalfirefox.css"
      ],
      "js": [
        "textbox.js"
      ]
    },
    {
      "matches": [
        "https://mxj.myanimelist.net/*"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "css": [
        "darkmxjfirefox.css"
      ]
    },
    {
      "matches": [
        "https://myanimelist.net/animelist/*",
        "https://myanimelist.net/mangalist/*"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "css": [
        "darklistfirefox.css"
      ]
    }
  ]
}