furigana remover 2

Remove furigana from itazuraneko/djt online novels

  1. // ==UserScript==
  2. // @name furigana remover 2
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Remove furigana from itazuraneko/djt online novels
  6. // @author EA2
  7. // @match https://itazuranekoyomi1.neocities.org/library/shousetu/volume/*
  8. // @match https://itazuranekoyomi2.neocities.org/library/shousetu/volume/*
  9. // @match https://djt.netlify.com/b/*
  10. // @grant none
  11. // @require http://code.jquery.com/jquery-3.4.1.slim.min.js
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. $('body').append('<ul><li><span>振仮名〇</span><span>振仮名Ⓧ</span></li></ul>')
  17.  
  18. //$(document).ready(function(){
  19. $('ul').click(function(){
  20. $('ul').toggleClass('furiganaOn')
  21. $('rt').toggleClass('furiganaOff')
  22. })
  23.  
  24. // Enable global CSS adding
  25. function addGlobalStyle(css) {
  26. var head, style;
  27. head = document.getElementsByTagName('head')[0];
  28. if (!head) { return; }
  29. style = document.createElement('style');
  30. style.type = 'text/css';
  31. style.innerHTML = css;
  32. head.appendChild(style);
  33. }
  34.  
  35. // Add CSS
  36. addGlobalStyle('ul{position:fixed;top:5px;left:5px;margin:0;padding:0;width:100px;height:30px;z-index:1;border:1px solid #000;border-radius:4px;cursor:pointer;overflow:hidden;}')
  37. addGlobalStyle('ul.furiganaOn{border-color:#fff;}')
  38. addGlobalStyle('ul li{list-style:none;width:100%;height:60px;text-align:center;text-transform:uppercase;transition:0.5s;}')
  39. addGlobalStyle('ul.furiganaOn li{transform:translateY(-30px);}')
  40. addGlobalStyle('ul li span{display:block;width:100%;height:30px;line-height:30px;color:#fff;background:#000;}')
  41. addGlobalStyle('ul li span:nth-child(1){background:#262626;color:#fff;}')
  42. addGlobalStyle('ul.furiganaOn rt{display:;}')
  43. addGlobalStyle('.furiganaOff{display: none;}')
  44. //addGlobalStyle('')
  45.  
  46. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址