Dictionary.com fullscreen crossword

3/24/2024, 12:07:21 PM

  1. // ==UserScript==
  2. // @name Dictionary.com fullscreen crossword
  3. // @namespace Violentmonkey Scripts
  4. // @match https://www.dictionary.com/e/crossword/*
  5. // @grant none
  6. // @version 1.0
  7. // @author popular-software
  8. // @license MIT
  9. // @description 3/24/2024, 12:07:21 PM
  10. // ==/UserScript==
  11.  
  12. (() => {
  13. console.log('running userscript: fullscreen crossword');
  14. const element = document.querySelector('main iframe');
  15. element.style = `
  16. position: absolute;
  17. left: 0;
  18. top: 0;
  19. z-index: 7001;
  20. width: 100vw;
  21. height: 100vh;
  22. `
  23. })()