kaur / Shiki User Style Remove

// ==UserScript==
// @name         Shiki User Style Remove
// @namespace    http://shikimori.org/
// @updateURL    https://openuserjs.org/meta/kaur/Shiki_User_Style_Remove.meta.js
// @version      1.0
// @description  Disabled Shiki User Styles
// @author       kaur
// @match        http://shikimori.org/*
// @match        https://shikimori.org/*
// @grant        none
// ==/UserScript==

var func = function() {
  $('#custom_css').remove();
};

$(document).ready(func);
$(document).on('page:load', func);
$(document).on('turbolinks:load', func);