EBC Live

移除遮罩,快速進入 東森 EBC YT 直播頻道

  1. // ==UserScript==
  2. // @name EBC Live
  3. // @namespace abner6718
  4. // @description 移除遮罩,快速進入 東森 EBC YT 直播頻道
  5. // @copyright 2022, abner6718 (https://gf.qytechs.cn/en/users/929971-abner6718)
  6. // @license MIT
  7. // @version 0.0.1
  8. // @match https://news.ebc.net.tw/live*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=net.tw
  10. // @grant GM_addStyle
  11. // @grant GM_registerMenuCommand
  12. // ==/UserScript==
  13.  
  14. GM_addStyle(`
  15. #livePlayer-iframe-overlay {
  16. display: none;
  17. }
  18.  
  19. .ytp-cued-thumbnail-overlay {
  20. display: none;
  21. }
  22. `)
  23.  
  24. function get_youtube_link(){
  25. let youtube_code = document.querySelector('.live-else-little-box').getAttribute('data-code');
  26.  
  27. return `https://www.youtube.com/watch?v=${youtube_code}`;
  28. }
  29.  
  30. GM_registerMenuCommand("前往 Youtube", () => {
  31. window.location.href = get_youtube_link();
  32. });

QingJ © 2025

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