zuber视频播放

就不装APP

// ==UserScript==
// @name         zuber视频播放
// @namespace    mscststs
// @version      0.1
// @description  就不装APP
// @author       mscststs
// @match        http*://mobile.zuber.im/*
// @require https://greasyfork.org/scripts/38220-mscststs-tools/code/MSCSTSTS-TOOLS.js?version=713767
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    async function  init(){
        let d = await mscststs.wait(".video_detail_wrap.photo")
        d.addEventListener("click",function(e){
            let video = document.querySelector(".video_detail_wrap.photo").style.backgroundImage.slice(5,100).split("?")[0];

            window.open(video);
            e.cancelBubble = true;
            e.stopPropagation();
            e.preventDefault();

        },true)
    }
    init();
})();