Greasy Fork is available in English.

publink-deepl-beautify

deepl 样式美化

  1. // ==UserScript==
  2. // @name publink-deepl-beautify
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description deepl 样式美化
  6. // @author huangbc
  7. // @include *://*
  8. // @license MIT
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=shb.ltd
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. let styleElement = document.createElement('style')
  16. styleElement.textContent = `
  17. #document-scroll-container header,
  18. #document-scroll-container .mobile:hidden,
  19. #document-scroll-container footer
  20. { display: none !important; }
  21. `
  22. document.body.append(styleElement)
  23.  
  24. })();