NCI - SEER Training Modules

National Cancer Institute SEER Training Modules

  1. // ==UserScript==
  2. // @name NCI - SEER Training Modules
  3. // @namespace https://xianghongai.github.io/
  4. // @version 0.0.1
  5. // @description National Cancer Institute SEER Training Modules
  6. // @author Nicholas Hsiang
  7. // @icon https://xinlu.ink/favicon.ico
  8. // @match https://training.seer.cancer.gov/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var css = `
  16. .qtip.qtip-primer {
  17. z-index: 9!important;
  18. }
  19. `,
  20. head = document.head || document.getElementsByTagName('head')[0],
  21. style = document.createElement('style');
  22.  
  23. style.type = 'text/css';
  24.  
  25. if (style.styleSheet){
  26. style.styleSheet.cssText = css;
  27. } else {
  28. style.appendChild(document.createTextNode(css));
  29. }
  30.  
  31. head.appendChild(style);
  32. })();

QingJ © 2025

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