clean up deepl.com

Cleans up ads and menubars

  1. // ==UserScript==
  2. // @name clean up deepl.com
  3. // @author jside
  4. // @namespace Cleans up ads and menubars
  5. // @description Cleans up ads and menubars
  6. // @version 0.1.1
  7. // @include https://www.deepl.com/*
  8. // @grant GM_addStyle
  9. // @grant GM_log
  10. // @run-at document-start
  11. // @supportURL
  12. // @note Original by Hunlongyu (https://github.com/Hunlongyu, https://gist.github.com/Hunlongyu/2d7cc7db66b79831c3af23cc52a85845) edit by me
  13. // ==/UserScript==
  14.  
  15. (function () {
  16. 'use strict'
  17. let css = `
  18. .dl_header{display: none !important;}
  19. #dl_career_container{display: none !important;}
  20. .dl_translator_page_container {min-height: 130px !important;}
  21. #dl_cookieBanner{display: none !important;}
  22. .lmt__language_container_sec{display: none !important;}
  23. #lmt_pro_ad_container{display: none !important;}
  24. #dl_quotes_container{display: none !important;}
  25. .eSEOtericText{display: none !important;}
  26. .lmt__rating {display: none !important;}
  27. .lmt__target_toolbar__share_container{display: none !important;}
  28. `
  29. try {
  30. GM_addStyle(css)
  31. } catch (e) {
  32. GM_log(new Error('GM_addStyle stopped working!'))
  33. }
  34. })()

QingJ © 2025

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