Greasy Fork is available in English.

自动切换斗鱼 H5 beta 播放器

省去右键切换的过程

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         自动切换斗鱼 H5 beta 播放器
// @namespace    http://imspace.cn/
// @version      0.1
// @description  省去右键切换的过程
// @author       space
// @match        https://www.douyu.com/*
// @grant        unsafeWindow
// ==/UserScript==

(function() {
    'use strict';
    var id = setInterval(() => {
        if (unsafeWindow.__player !== undefined) {
            console.log('切换官方H5播放器成功');
            unsafeWindow.__player.switchPlayer(true);
            clearInterval(id);
        }
    }, 100);
    setTimeout(() => {
        clearInterval(id);
        console.error('自动切换到斗鱼官方H5播放器失败 原因: 超时(10秒)');
    }, 10 * 1000);
})();