您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A rounded animixplay.to theme
当前为
// ==UserScript== // @name Animixplay.to // @namespace https://tampermonkey.net/ // @version 1 // @description A rounded animixplay.to theme // @author DoggoOfSpeed // @match https://animixplay.to/* // @icon https://animixplay.to/icon.png // @grant none // ==/UserScript== const style = document.createElement('style'); style.innerHTML = ` .playbutton, .playerpage, .imgusr, .plyr__menu__container, #showcommentbtn, #q, .resultimg, .searchresult li, #loadmorelist, #featuredcard, #featuredimg, #schedulenotice, #lastwatch, select, #progressnumber, #tracknumber, #manualtrackbtn, #playerbottomicon { border-radius: 10px; } .plyr__menu__container .plyr__control { color: white !important; } #epslistplace { grid-template-columns: repeat(auto-fill,minmax(48px,1fr)); } .eptitle, #disquscomment, .rightcard, .leftbottom, #allbtn, .nav-tabs li a, #announcement { border-radius: 10px 10px 0 0; } #disquscomment { margin: 25px auto 0 auto; } .plyr__menu__container { background: rgb(20,20,20); } #opensidebarbtn { border-radius: 10px 0 0 10px; } #lastwatchclosebtn { border-radius: 0 10px 10px 0; } #menuclose, #reportclose { margin: 5px 5px 0 -25px; background: none; } #infocard, #readmorebtn { border-radius: 0 0 10px 10px; } .rightcard, .rightcardCenter, #opensidebarbtn { background: #1A1A1A; } .rating { right: initial; border-radius: 10px 0 10px 0; } .timetext { border-radius: 10px 0 10px 0; } .infotext { bottom: 0 } @media screen and (max-width: 1000px) { body, html, #playertopmenu { background-color: #141414; } .subpart { background: rgb(32, 32, 32); } } `; document.head.appendChild(style);