-
Notifications
You must be signed in to change notification settings - Fork 0
/
Young_man_no_study.js
28 lines (27 loc) · 1.21 KB
/
Young_man_no_study.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// ==UserScript==
// @name 南昌青年大学习跳过
// @namespace http://tampermonkey.net/https://github.com/RemKeeper/Young_man_no_study/blob/main/Young_man_no_study.js
// @version 0.2
// @description 跳过视频
// @author Remkeeper
// @match *://h5.cyol.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @run-at document-idle
// @require https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==
document.getElementsByClassName('section3')[0].className = "section3 topindex2"
console.log('成功跳过视频')
var url=document.location.href;
var url_num=url.indexOf('m.html');
var pic_url = url.slice(0,url_num)+"images/end.jpg";
var down = document.createElement("a");
down.style.fontSize="25px";
down.style.width="448px"
down.style.height="700px"
down.style.position="absolute"
down.href=pic_url;
down.download="end.jpg";
document.getElementsByClassName('section3')[0].appendChild(down)
document.getElementsByClassName('section3')[0].style.background="url(https://s2.loli.net/2023/03/26/DntGUXPba4zHcAu.jpg)";
document.getElementsByClassName('section3')[0].style.backgroundSize="460px";