Greasy Fork镜像 支持简体中文。

Dual-sub styles

Dual-sub styles for Netflix, YouTube

  1. // ==UserScript==
  2. // @name Dual-sub styles
  3. // @namespace Video
  4. // @description Dual-sub styles for Netflix, YouTube
  5. // @run-at document-end
  6. // @match *://www.netflix.com/*
  7. // @match *://www.youtube.com/*
  8. // @grant none
  9. // @version 1.0.0
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. function addGlobalStyle(css) {
  14. var head, style;
  15. head = document.getElementsByTagName('head')[0];
  16. if (!head) { return; }
  17. style = document.createElement('style');
  18. style.type = 'text/css';
  19. style.innerHTML = css;
  20. head.appendChild(style);
  21. }
  22.  
  23. addGlobalStyle('.lln-word, .lln-not-word { color: yellow !important }');

QingJ © 2025

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