publink-webpage-test-beautify

webpage test 样式美化

  1. // ==UserScript==
  2. // @name publink-webpage-test-beautify
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.6
  5. // @description webpage test 样式美化
  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. (function() {
  13. 'use strict';
  14. let styleElement = document.createElement('style')
  15. styleElement.textContent = `
  16. .alert-banner,
  17. .testingBannerMessage,
  18. cp-header
  19. { display: none !important; }
  20. `
  21. document.body.append(styleElement)
  22. // Your code here...
  23. })();