Greasy Fork

Greasy Fork is available in English.

动画角色印象色

将印象色字段的背景改为该颜色

目前为 2016-02-15 提交的版本,查看 最新版本

// ==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'
    });
  }
});