Bato Panel Fix DESKTOP

fixes broken panels on all bato sites on DESKTOP

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Bato Panel Fix DESKTOP
// @namespace    http://tampermonkey.net/
// @version      2025-12-11
// @description  fixes broken panels on all bato sites on DESKTOP
// @license      MIT
// @match        https://bato.to/*
// @match        https://ato.to/*
// @match        https://dto.to/*
// @match        https://fto.to/*
// @match        https://hto.to/*
// @match        https://jto.to/*
// @match        https://lto.to/*
// @match        https://mto.to/*
// @match        https://nto.to/*
// @match        https://vto.to/*
// @match        https://wto.to/*
// @match        https://xto.to/*
// @match        https://yto.to/*
// @match        https://vba.to/*
// @match        https://wba.to/*
// @match        https://xba.to/*
// @match        https://bato.to/*
// @match        https://yba.to/*
// @match        https://zba.to/*
// @match        https://bato.ac/*
// @match        https://bato.bz/*
// @match        https://bato.cc/*
// @match        https://bato.cx/*
// @match        https://bato.id/*
// @match        https://bato.pw/*
// @match        https://bato.sh/*
// @match        https://bato.vc/*
// @match        https://bato.day/*
// @match        https://bato.red/*
// @match        https://bato.run/*
// @match        https://batoto.in/*
// @match        https://batoto.tv/*
// @match        https://batotoo.com/*
// @match        https://batpub.com/*
// @match        https://batread.com/*
// @match        https://batotwo.com/*
// @match        https://battwo.to/*
// @match        https://xbato.com/*
// @match        https://xbato.net/*
// @match        https://xbato.org/*
// @match        https://zbato.com/*
// @match        https://zbato.net/*
// @match        https://zbato.org/*
// @match        https://comiko.net/*
// @match        https://comiko.org/*
// @match        https://mangatoto.com/*
// @match        https://mangatoto.net/*
// @match        https://mangatoto.org/*
// @match        https://batocomic.com/*
// @match        https://batocomic.net/*
// @match        https://batocomic.org/*
// @match        https://readtoto.com/*
// @match        https://readtoto.net/*
// @match        https://readtoto.org/*
// @match        https://kuku.to/*
// @match        https://okok.to/*
// @match        https://ruru.to/*
// @match        https://xdxd.to/*
// @match        https://bato.si/*
// @match        https://bato.ing/*
// @icon            https://www.google.com/s2/favicons?sz=64&domain=bato.to
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

setInterval(() => {
  document.querySelectorAll('img').forEach(img => {
    if (img.src.includes('//k') && img.src.includes('.mb')) {
      img.referrerPolicy = "no-referrer";
      img.src = img.src.replace('//k', '//n');
    }
  });
}, 2000);

})();