八桂学习助手

自动学习广西干部网络学院课程脚本;允许分发和使用,但禁止复制、修改、合并。

  1. // ==UserScript==
  2. // @name 八桂学习助手
  3. // @namespace https://greasyfork.org/zh-CN/scripts/507573-%E5%85%AB%E6%A1%82%E5%AD%A6%E4%B9%A0%E5%8A%A9%E6%89%8B
  4. // @version 2.0.4
  5. // @match https://*.gxela.gov.cn/*
  6. // @description 自动学习广西干部网络学院课程脚本;允许分发和使用,但禁止复制、修改、合并。
  7. // @author Tandent-zz
  8. // @license Proprietary
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. var Info_tooltip = document.createElement('div');
  13. Info_tooltip.id = 'Info_tooltip';
  14. Info_tooltip.style.position = 'fixed';
  15. Info_tooltip.style.top = '50px';
  16. Info_tooltip.style.right = '50px';
  17. Info_tooltip.style.width = '210px';
  18. Info_tooltip.style.height = '160px';
  19. Info_tooltip.style.backgroundColor = '#f1f1f1';
  20. Info_tooltip.style.border = '1px solid #ccc';
  21. Info_tooltip.style.borderRadius = '8px';
  22. Info_tooltip.style.boxShadow = '0 0 10px rgba(0,0,0,0.1)';
  23. Info_tooltip.style.zIndex = '1000';
  24. Info_tooltip.style.padding = '5px';
  25. Info_tooltip.innerHTML = '为最大限度减少因不同浏览器导致的影响,提高抗干扰能力和运行效率,八桂学习助手已封装为应用程序,无需安装,下载打开即可使用。<hr>' +
  26. '<div style="display: inline-flex; align-items: center; white-space: nowrap;margin-right: 2px;margin-left:10px;"><a href="https://www.bgxxzs.us.kg/" target="_blank" style="color: blue; text-decoration: underline;">进入官网</a></div>' +
  27. '<div style="display: inline-flex; align-items: center; white-space: nowrap;margin-left:2px;margin-right: 2px;"><a href="https://www.bgxxzs.us.kg/UsingTutorials.html" target="_blank" style="color: blue; text-decoration: underline;">使用教程</a></div>'+
  28. '<div style="display: inline-flex; align-items: center; white-space: nowrap;margin-left:2px;margin-right: 2px;"><a href="https://www.bgxxzs.us.kg/manage.html" target="_blank" style="color: blue; text-decoration: underline;">联系管理</a></div><hr>'+
  29. '<div style="display: inline-flex; align-items: center; white-space: nowrap;margin-right: 2px;margin-left:10px;"><a href="https://share.feijipan.com/s/nDD5tfiZ" target="_blank" style="color: blue; text-decoration: underline;">下载使用</a></div>' ;
  30. document.body.appendChild(Info_tooltip);
  31. })();