// ==UserScript== // @name 网页抖音视频下载器 // @icon https://lf1-cdn-tos.bytegoofy.com/goofy/ies/douyin_web/public/favicon.ico // @version 1.1 // @description 在作者头像下方插入当前视频的下载按钮 // @author xiaofang // @match *://www.douyin.com/* // @grant none // @require http://code.jquery.com/jquery-1.11.0.min.js // @namespace https://greasyfork.org/zh-CN/scripts/438928 // @downloadURL none // ==/UserScript== (function(){ console.log("脚本启动成功"); window.onload = function(){ $("script").after("") $("script").after("") setInterval(function(){ var aaa = "true"; $('.swiper-slide-active .xgplayer-video-interaction-wrap').children().each(function(){ var cls= $(this).attr("class"); if (cls=="AAhbEl5e DownloadURL"){ aaa = "false"; return false; }; }); if (aaa=="true"){ $('.swiper-slide-active .kluO5VYY').each(function(){ $(this).after('
下载
'); return false; }); }; },1000); } })();