Removes blur from HiAnime and adds rounded corners to images.
当前为
// ==UserScript==
// @name HiAnime Blur Remover & Other
// @namespace http://tampermonkey.net/
// @version 1
// @author Ghoste
// @license MIT
// @description Removes blur from HiAnime and adds rounded corners to images.
// @include *://hianime.to*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
GM_addStyle ( `
#header.fixed {
background-color: rgb(32 31 49) !important;
backdrop-filter: none !important;
}
.film-poster {
border-radius: 8px !important;
}
.flw-item .film-poster .film-poster-ahref:after {
backdrop-filter:none !important;
}
.qtip-default {
backdrop-filter:none !important;
background: rgb(81 80 100) !important;
}
.film-poster-ahref i, .film-poster-ahref:after, .film-poster-ahref:before, .film-poster-img, .preform.preform-dark .form-control, .trending-list {
transition: all .2s ease 0s !important;
-webkit-transition: all .2s ease 0s !important;
}
#header.header-home, #sidebar_menu, .block-rating .button-rate, .film-poster-ahref:after, .flw-item, .live-thumbnail-img, .lv-list .item, .profile-avatar, .rep-in .btn i, .toggle-onoff, .toggle-onoff>span, div.detail .is-info>div {
transition: all .2s ease 0s;
-webkit-transition: none !important;
}
` );