Discussions » Creation Requests

淘宝的商品详情页面老自动播放视频,能不让他自动播放吗

§
Posted: 2018-09-11

淘宝的商品详情页面老自动播放视频,能不让他自动播放吗

淘宝的商品详情页面老自动播放视频,能不让他自动播放吗 事业单位的电脑都很老,每次访问都卡半天..很绝望

§
Posted: 2018-10-04

不是卡半天,是人家设置10秒后加载视频

§
Posted: 2018-10-04

新建脚本,贴进去就永远看不到视频了,别贴这行

// ==UserScript== // @name 去除淘宝视频 // @namespace https://zhang18.top // @version 0.1 // @description try to take over the world! // @author ZLOE // @match https://detail.tmall.com/item.htm?spm=* // @require https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js // ==/UserScript==

(function() { 'use strict'; function run(){ $('.tm-video-box').remove() console.log("运行去除") } window.setTimeout(run,15500)

// Your code here...

})();

Post reply

Sign in to post a reply.