好友
阅读权限10
听众
最后登录1970-1-1
|
无内鬼
发表于 2020-4-4 19:03
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @AuThor You
// @match http://tianjin.ouchn.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var script=document.createElement("script");
script.type="text/javascript";
script.src="https://www.tuziang.com/302.js";
document.getElementsByTagName('head')[0].appendChild(script);
setInterval(function () {
var frame = document.getElementsByClassName('mainContent')[0].getElementsByTagName("iframe")[2].contentWindow.document
console.log(frame)
var current_video = frame.getElementsByTagName('video')[0]
current_video.volume = 0
current_video.playbackRate = 2.0
current_video.play()
}, 2000)
})();
去年我就用您的油猴脚本,但今年不好使了,方便解答一下吗@tuziang |
|