Greasy Fork is available in English.
将印象色字段的背景改为该颜色
当前为
// ==UserScript==
// @name 动画角色印象色
// @version 0.0.2
// @description 将印象色字段的背景改为该颜色
// @include /https?:\/\/(bgm\.tv|bangumi\.tv|chii\.in)\/character\/.+/
// @author woozy
// @grant none
// @namespace im.woozy.bangumi
// ==/UserScript==
'use strict';
$('#infobox li').each(function() {
var key = $(this).children('.tip').text();
if (~key.indexOf('印象色')) {
var color = $(this).contents()[1].textContent;
$(this).css({
backgroundColor: color,
fontFamily: 'monospace'
});
}
});