您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
-----------------
// ==UserScript== // @name Modératorbar // @namespace https://ihax.fr/ // @version 1.0 // @description ----------------- // @author Weyzen // @match https://ihax.fr/* // @grant none // ==/UserScript== $(document).ready(function(){ var css = ".barre{width:99%;border:2px solid #2F78A0;text-align:center;padding-top:20px;padding-bottom:20px;margin-left:1%;margin-right:20%;background-color:#2F78A0}.lien{width:18%;display:inline-block}.barre a{text-decoration:none;color:#fff;padding-bottom:20px;padding-top:44px}" $("head").append("<style>" + css + "</style>"); var barre = "<br /><div class='barre'><a href='https://ihax.fr/forums/questions-aides-et-recherches.29/'><b><div class='lien'>Question Aide & Recherche</div></b></a><a href='https://ihax.fr/forums/lobby-gratuit.5/'><b><div class='lien'>Lobby Gratuit</div></b></a><a href='https://ihax.fr/premium/'><b><div class='lien'>Abonnement</div></b></a><a href='https://ihax.fr/taigachat-terms/'><b><div class='lien'>Règlement Shoutbox</div></b></a><a href='https://ihax.fr/forums/netflix-spotify-etc.20/'><b><div class='lien'>Compte Leak </div></b></a></div><br />" $(".titleBar").append(barre); });