Fix image loading

Fixes images not loading by using another server

目前为 2020-06-15 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Fix image loading
  3. // @namespace Violentmonkey Scripts
  4. // @match https://manganelo.com/chapter/*
  5. // @match https://mangakakalot.com/chapter/*
  6. // @grant none
  7. // @version 1.0
  8. // @author Ost
  9. // @description Fixes images not loading by using another server
  10. // ==/UserScript==
  11. var regex = /(https:\/\/s\d*\.mkklcdnv\d*\.com)(.*)/gm;
  12. img = document.getElementsByTagName('img');
  13. for (var i = 0; i < img.length; i++) {
  14. img[i].src = img[i].src.replace(regex, "https://s8.mkklcdnv8.com$2");
  15. }