ad研究所

针对视频的优化脚本,此脚本可以让用户观看全站视频

Tính đến 29-07-2024. Xem phiên bản mới nhất.

// ==UserScript==
// @name         ad研究所
// @namespace    http://tampermonkey.net/
// @version      10.3
// @description  针对视频的优化脚本,此脚本可以让用户观看全站视频
// @author       kk1223
// @match        https://*.aidou.pro/*
// @match        https://*.aidou.art/*
// @match        https://*.aido2.cc/*
// @match        https://*.aidoo.info/*
// @icon         https://www6.aidou.pro/static/img/logo.png
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    setTimeout(function(){
        var url = location.href
        var id = url.split('/').pop().split('.')[0];
        var giturl = "https://knciik123.gitlab.io/-/test_aido/-/jobs/7443374469/artifacts/public/index.html?id="+id
        //window.open(giturl, '_blank')

        const div =document.getElementById("formatVideo");
        div.innerHTML = "<iframe src='"+giturl+"' style='width:100%;height:100%' />"
    },1000)
})();