NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name iptv808控制器 // @namespace https://openuserjs.org/users/jjm2473/ // @version 0.1 // @description http://iptv808.com/ http://iptv807.com/ 显示控制器,方便回放控制 // @author jjm2473 // @match http://play.ggiptv.com:13164/player.php* // @grant none // @run-at document-end // @license MIT // ==/UserScript== (function() { 'use strict'; var style=document.createElement('style'); style.innerText = ` .xgplayer-is-live .xgplayer-controls>* { display: inline-block } .xgplayer-time { padding-left: 5px; } `; document.head.appendChild(style); })();