您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
To view and download theYNC UNDERGROUND vids without Underground subscription, note that this script not give access to all bonus content, if you enjoy theYNC plz subscribe!
当前为
// ==UserScript== // @name theYNC Play & download // @name:es theYNC Ver y descargar // @namespace https://theync.com // @match https://theync.com/* // @grant none // @version 1.0b // @author Nyarlathotep // @description To view and download theYNC UNDERGROUND vids without Underground subscription, note that this script not give access to all bonus content, if you enjoy theYNC plz subscribe! // @description:es Para ver y descargar los videos UNDERGROUND sin una subscripcion, notar que esto no te da acceso a todo el contenido bonus, si te gusta subscribete! // @licence MIT // ==/UserScript== $("div.item-normal.item-block.item-border.col > div.inner-block span.image img").each(function(index) { direccion = $(this).prop("src").replace("thumbs", "media").replace("thumbs", "videos"); if (direccion.includes("mp4")){ $(this).closest('a').attr('href',direccion.slice(0, direccion.indexOf("mp4") + 3)).attr('target','_blank'); } if (direccion.includes("wmv")){ $(this).closest('a').attr('href',direccion.slice(0, direccion.indexOf("wmv")) + "mp4").attr('target','_blank'); } });