油猴——实现微吼进入时立即全屏

// ==UserScript==
// @name         vhall Full Screen
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  微吼全屏
// @author       yenange
// @match        https://live.vhall.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function(){
        $("div.full-screen").trigger("click");
    },2500);
})();

 

你可能感兴趣的:(其它,-,其它技巧,前端,-,jQuery)