Greasy Fork is available in English.

武汉电视台视频播放使用HTML5播放器

武汉电视台视频播放替换掉原先的Flash播放器改为使用HTML5播放器

// ==UserScript==
// @name         武汉电视台视频播放使用HTML5播放器
// @namespace    http://tampermonkey.net/
// @version      0.4
// @description  武汉电视台视频播放替换掉原先的Flash播放器改为使用HTML5播放器
// @author       别问我是谁请叫我雷锋
// @match        http://app.cjyun.org/video/player/index*
// @match        https://app.cjyun.org/video/player/index*
// @match        http://app.hannews.com.cn/video/player/index*
// @match        https://app.hannews.com.cn/video/player/index*
// @license      BSD-3-Clause
// @grant        none
// ==/UserScript==


'use strict';
document.getElementsByTagName("script")[1].remove();
// Your code here...
var x = function () {
    document.getElementById("a1").removeEventListener("DOMNodeInserted", x);
    IsPC = function () { return false; };
};

document.getElementById("a1").addEventListener("DOMNodeInserted", x);