您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Quiero Ver Mi MANGA!!!!
当前为
// ==UserScript== // @name Multi-script Para TMO // @namespace Mother Of Mangas // @version 2.6.0 // @description Quiero Ver Mi MANGA!!!! // @author IRhoAias // @connect * // @grant GM.getResourceUrl // @grant GM_xmlhttpRequest // @grant GM_getResourceURL // @license MIT // @match *://*almtechnews.com/* // @match *://*animalcanine.com/* // @match *://*animationforyou.com/* // @match *://*anitoc.com/* // @match *://*cook2love.com/* // @match *://*cookerready.com/* // @match *://*cooker2love.com/* // @match *://*mygamesinfo.com/* // @match *://*enginepassion.com/* // @match *://*fanaticmanga.com/* // @match *://*gamesnk.com/* // @match *://*infopetworld.com/* // @match *://*mangalong.com/* // @match *://*mistermanga.com/* // @match *://*motornk.com/* // @match *://*otakuworldgames.com/* // @match *://*recipesnk.com/* // @match *://*worldmangas.com/* // @match *://*wtechnews.com/* // ==/UserScript== if (window.top !== window.self) //Corre en 2do plano, SOLAMENTWE si tienes el navegador en 1er plano, return; var currentURL = location.href; if (currentURL.match("cook2love.com/news")) { location.href = location.href.replace("cook2love.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("cooker2love.com/news")) { location.href = location.href.replace("cooker2love.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("infopetworld.com/news")) { location.href = location.href.replace("infopetworld.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("almtechnews.com/news")) { location.href = location.href.replace("almtechnews.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("mygamesinfo.com/news")) { location.href = location.href.replace("mygamesinfo.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("wtechnews.com/news")) { location.href = location.href.replace("wtechnews.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("animationforyou.com/news")) { location.href = location.href.replace("animationforyou.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("animalcanine.com/news")) { location.href = location.href.replace("animalcanine.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("gamesnk.com/news")) { location.href = location.href.replace("gamesnk.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("otakuworldgames.com/news")) { location.href = location.href.replace("otakuworldgames.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("enginepassion.com/news")) { location.href = location.href.replace("enginepassion.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("mangalong.com/news")) { location.href = location.href.replace("mangalong.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("recipesnk.com/news")) { location.href = location.href.replace("recipesnk.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("cookerready.com/news")) { location.href = location.href.replace("cookerready.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("mistermanga.com/news")) { location.href = location.href.replace("mistermanga.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("worldmangas.com/news")) { location.href = location.href.replace("worldmangas.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("fanaticmanga.com/news")) { location.href = location.href.replace("fanaticmanga.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("motornk.com/news")) { location.href = location.href.replace("motornk.com/news", "lectortmo.com/viewer"); }; if (currentURL.match("anitoc.com/news")) { location.href = location.href.replace("anitoc.com/news", "lectortmo.com/viewer"); }; // end of script