Comfortable MyAnimeList Dark Mode

Enable a more comfortable dark mode on Myanimelist, by Shishio-kun.

Τι είναι το Comfortable MyAnimeList Dark Mode;

Το Comfortable MyAnimeList Dark Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ShishiosDarkMode, και η κύρια λειτουργία του είναι "Enable a more comfortable dark mode on Myanimelist, by Shishio-kun.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Comfortable MyAnimeList Dark Mode

Λήψη αρχείων επέκτασης Comfortable MyAnimeList Dark Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Are MAL's dark mode and light mode too hard on your eyes? My extension provides a much more comfortable dark mode alternative! Darkens all pages (including lists).

In addition to the more comfortable dark mode the extension also adds many improvements and fixes, such as:
(1) removes bloat and flashbang elements from the site 
(2) top anime and search pages gain status colors and working tooltips
(3) reviews can be darkened to make walls of text easier to read, reviewer scores are seen at all times (you don't need to click Show More)
(4) darkens the Myanimelist X Japan and Fantasy Anime League sites, which the default dark mode doesn't affect

Simply install the extension and everything will be done. Report bugs, make suggestions, and see alternative versions in the official topic here: https://myanimelist.net/forum/?topicid=2072574

Big thanks and credit to Valerio_Lyndon for mapping out much of the site earlier in previous dark themes. In the early stages of making this extension, I used a CSS file with your name on it and that was a giant help in the beginning. Also, thanks and credit to ShaggyZE for any work you may have put into the file I used. Colors used were inspired in part by cicerakes dark mode (my preferred theme for years) and the Dark Reader extension, although I've made mine darker and added hundreds of other changes.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Comfortable MyAnimeList Dark Mode Comfortable MyAnimeList Dark Mode
ID ifdccgjiicdiaghhigodkknhmcjlpdcc
Επίσημο URL https://chromewebstore.google.com/detail/comfortable-myanimelist-d/ifdccgjiicdiaghhigodkknhmcjlpdcc
Περιγραφή Enable a more comfortable dark mode on Myanimelist, by Shishio-kun.
Μέγεθος Αρχείου 57.1 KB
Αριθμός Εγκαταστάσεων 748
Τρέχουσα Έκδοση 0.19
Τελευταία Ενημέρωση 2023-05-21
Ημερομηνία Δημοσίευσης 2023-01-24
Αξιολόγηση 4.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής ShishiosDarkMode
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.freeprivacypolicy.com/live/94975717-ec9b-4691-8eec-0ef52af29a74
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Comfortable MyAnimeList Dark Mode",
    "description": "Enable a more comfortable dark mode on Myanimelist, by Shishio-kun.",
    "version": "0.19",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "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_end",
            "all_frames": true,
            "css": [
                "darkmodechrome.css"
            ],
            "js": [
                "textbox.js"
            ]
        },
        {
            "matches": [
                "https:\/\/myanimelist.net\/",
                "https:\/\/myanimelist.net\/anime\/season"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "css": [
                "darkfrontchrome.css"
            ]
        },
        {
            "matches": [
                "https:\/\/fal.myanimelist.net\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "css": [
                "darkfalchrome.css"
            ]
        },
        {
            "matches": [
                "https:\/\/mxj.myanimelist.net\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "css": [
                "darkmxjchrome.css"
            ]
        },
        {
            "matches": [
                "https:\/\/myanimelist.net\/animelist\/*",
                "https:\/\/myanimelist.net\/mangalist\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "css": [
                "darklistchrome.css"
            ]
        }
    ]
}