Greasy Fork is available in English.

MiWiFi Beta Remove Remove TpWatermark

Remove watermark from MiWiFi beta firmware.


ติดตั้งสคริปต์นี้?
  1. // ==UserScript==// @name MiWiFi Beta Remove Remove TpWatermark// @name:zh-cn 小米路由器 Beta 去除水印// @namespace http://tampermonkey.net/// @version 1// @description Remove watermark from MiWiFi beta firmware.// @description:zh-cn 去除小米路由器测速版固件的水印。// @author Howard Wu// @license MIT// @match *://*/cgi-bin/luci/*// @icon *://miwifi.com/favicon.ico// @grant none// ==/UserScript==(function() {'use strict';if (document.getElementById('tp-watermark') == null) {return;}document.body.removeChild(document.getElementById('tp-watermark'));})();