Replace 404 Image

Заменяет изображение и текст 404 на кастомное

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Replace 404 Image
// @namespace    https://shikimori.one/
// @version      1.1
// @description  Заменяет изображение и текст 404 на кастомное
// @author       LifeH
// @match        *://shikimori.org/*
// @match        *://shikimori.one/*
// @match        *://shikimori.me/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const imgURL = "https://i.ibb.co/QXgRz6p/rkn-2x.jpg";
    const targetIMG = "/images/static/404.jpg";

    function replaceImage() {
        const img = document.querySelector(`img.image[src="${targetIMG}"]`);
        if (img) {
            img.src = imgURL;
            img.srcset = `${imgURL} 2x`;
        }
    }

    function replaceText() {
        const errorText = document.querySelector('.dialog');
        if (errorText) {
            errorText.innerHTML = `
                <p class="error-404">Заблокировано \n Роскомнадзором</p>
                <h1>Эта страница содержала запрещённый контент.</h1>
                <p><a href="/">на главную</a></p>
                <img class="image" src="${imgURL}" srcset="${imgURL} 2x">
            `;
        }
    }

    function main() {
        replaceImage();
        replaceText();
    }

    function ready(fn) {
        window.addEventListener("load", fn);
        document.addEventListener("page:load", fn);
        document.addEventListener("turbolinks:load", fn);
        if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading") {
            fn();
        } else {
            document.addEventListener("DOMContentLoaded", fn);
        }
    }

    ready(main);
})();